-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path06-booleans.html
More file actions
75 lines (57 loc) · 1.33 KB
/
06-booleans.html
File metadata and controls
75 lines (57 loc) · 1.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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>
/*
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');
} 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);
let variable1;
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>