-
Notifications
You must be signed in to change notification settings - Fork 0
/
strict-mode.html
73 lines (65 loc) · 2.24 KB
/
strict-mode.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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>Destructuring</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 2rem;
}
p {
padding: .5rem 0;
}
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>
/*
## Strict Mode
● Saat kita menjalankan kode program JavaScript, secara default kode program kita berjalan dalam mode tidak strict, atau istilahnya sloppy mode
● Pada ECMAScript 5, diperkenalkan mode strict, dimana ketika strict mode dijalankan, maka akan merubah beberapa cara kerja di JavaScript, seperti :
○ Merubah beberapa JavaScript error dari yang tadinya silent error, menjadi throw error (terlihat)
○ Memperbaiki beberapa kesalahan engine JavaScript untuk optimisasi
○ Menolak beberapa kode perintah yang kedepannya akan digunakan di ECMAScript
● https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode/Transitioning_
to_strict_mode
## Cara Menyalakan Strict Mode
● Untuk menyalakan strict mode, kita bisa menambahkan `use strict` pada baris awal file javascript kita
● Atau bisa juga ditambahkan di awal function kita
*/
document.writeln(`<div>Press f12</div>`);
// =====Kode : Strict Mode=====
console.log(`<p>=====Strict Mode=====</p>`);
function useStrictMode() {
'use strict';
const person = {
firstName: "Fauzan"
}
with (person) {
console.log(firstName);
}
}
useStrictMode();
</script>
</body>
</html>