-
Notifications
You must be signed in to change notification settings - Fork 0
/
function-parameter.html
55 lines (47 loc) · 1.51 KB
/
function-parameter.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
55
<!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 Parameter</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
div {
width: 100%;
height: 100vh;
background-color: rgb(0, 195, 255);
font-weight: 800;
font-size: 2rem;
font-family: sans-serif;
text-transform: uppercase;
display: flex;
justify-content: center;
align-items: center;
color: #0e0e0e;
}
</style>
</head>
<body>
<script>
/*
## Function Parameter
● Kita bisa mengirim informasi ke function yang ingin kita panggil
● Untuk melakukan hal tersebut, kita perlu menambahkan parameter atau argument di function
yang sudah kita buat
● Parameter ditempatkan di dalam kurung () di deklarasi method
● Parameter bisa lebih dari satu, jika lebih dari satu, harus dipisah menggunakan tanda koma
*/
// Kode : Tanpa With Statement
document.writeln(`<div>Press F12 or klik inspect and console <br> to see the result</div>`);
function sayHello(firstName, lastName) {
console.log(`Hello ${firstName} ${lastName}`);
}
sayHello("Fauzan", "Racing");
</script>
</body>
</html>