2024-11-19 21:46:11 +00:00
|
|
|
let age = 17
|
2024-11-14 14:44:21 +00:00
|
|
|
|
2024-11-19 21:46:11 +00:00
|
|
|
if (5 > 0) {
|
|
|
|
console.log("Je to pravda")
|
|
|
|
}
|
2024-11-14 14:44:21 +00:00
|
|
|
|
2024-11-19 21:46:11 +00:00
|
|
|
if (age >= 18) {
|
|
|
|
console.log("Jste dospělí")
|
|
|
|
}
|
2024-11-14 14:44:21 +00:00
|
|
|
|
2024-11-19 21:46:11 +00:00
|
|
|
if (age < 18) {
|
|
|
|
console.log("Jsi dítě")
|
|
|
|
}
|