-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path06-booleans.html
More file actions
56 lines (44 loc) · 1.1 KB
/
06-booleans.html
File metadata and controls
56 lines (44 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booleans</title>
</head>
<body>
<script>
console.log(typeof true);
console.log(3<5);
//== (convert two values to same type)
//=== (stay in the original type)
/*
if(false){
console.log('Broken ke?');
}else{
console.log('Kesiannn');
}
const age = 30;
if(age < 16){
console.log('FAKYU');
}
else if(age < 12){
console.log('Hmm');
}
else{
console.log('Move on laa');
}
*/
//truthy and falsy value
//falsy --> 0 , undefined (variable) , NaN (undefined operation) , null
/*
const cartQuantity = 5;
if(cartQuantity){
console.log('truthy value')
}
*/
//ternary operator
const result = true ? 'truthy' : 'falsy';
console.log(result);
</script>
</body>
</html>