-
Notifications
You must be signed in to change notification settings - Fork 733
/
Copy path06-booleans.html
73 lines (56 loc) · 1.27 KB
/
06-booleans.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>
<head>
<title>Booleans</title>
</head>
<body>
<script>
/*
true
false
console.log(3 > 5 - 5);
console.log(5 === '5.00');
if (false) {
console.log('hello');
} else {
console.log('else');
}
const age = 15;
if (age >= 16) {
console.log('You can drive');
console.log('Congrats');
} else if (age >= 14) {
console.log('Almost there!');
} else {
console.log('You can not drive');
}
*/
/*
console.log(true && false);
console.log(0.2 >= 0 && 0.2 < 1 / 3);
console.log(true || false);
console.log(!false);
*/
/*
if (0) {
console.log('truthy');
}
const cartQuantity = 5;
if (cartQuantity) {
console.log('cart has products');
}
console.log(!0);
console.log('text' / 5);
const variable1 = undefined;
console.log(variable1);
*/
const result = 0 ? 'truthy' : 'falsy';
console.log(result);
false && console.log('hello');
const message = 5 && 'hello';
console.log(message);
const currency = undefined || 'USD';
console.log(currency);
</script>
</body>
</html>