-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction-anonymous.html
54 lines (45 loc) · 1.34 KB
/
function-anonymous.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Function Anonymous</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 2rem;
}
p {
padding: .5rem 0;
}
</style>
</head>
<body>
<script>
/*
## Anonymous Function
● Sebelumnya kita selalu membuat function dengan nama
● Kita juga bisa membuat function tanpa nama function, atau istilahnya adalah anonymous function
● Kita bisa buat anonymous function dalam sebuah variable atau bisa juga kita buat ketika mengisi parameter
*/
// Kode : Anonymous Function di Variable
let say = function (name) {
console.log(`Hello ${name}`);
document.writeln(`<p>Hello ${name}</p>`);
}
say("Fauzan");
// Kode : Anonymous Function di Parameter
function giveMeName(callback, age) {
callback("Fauzan", age);
}
giveMeName(function (name, age) {
document.writeln(`<p>Hello ${name} I'm ${age} years old</p>`);
}, 20);
</script>
</body>
</html>