-
Notifications
You must be signed in to change notification settings - Fork 0
/
conditionals.js
52 lines (44 loc) · 1.07 KB
/
conditionals.js
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
const condition = true
condition ? console.log("sant") : console.log("falskt")
const age = 65
if(age <18) {
console.log("cannot vote")
} else {
console.log("can vote")
}
age < 18 ? console.log("cannot vote") : console.log("can vote")
/*
* Om ålder är under 13: Barn
* Om ålder är 13 och mindre än 20: tonåring
* Om ålder är 20 och mindre än 65: vuxen
* Om ålder är 65 och uppåt: pensionär
*/
if(age < 13) {
console.log("Barn")
} else if(age >= 13 && age < 20) {
console.log("Tonåring")
} else if(age >= 20 && age < 65) {
console.log("Vuxen")
} else {
console.log("Pensionär")
}
const currentWeather = "adsadsadsadsa"
let weather;
switch(currentWeather) {
case "rainy":
console.log("Det kommer regna")
weather = 1
break
case "sunny":
console.log("Det verkar vara soligt")
weather = 2
break
case "cloudy":
console.log("Lite molnigt idag")
weather = 3
break
default:
console.log("Ogiltigt väder")
weather = 0
}
console.log(weather)