mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
285 B
285 B
date | id | title |
---|---|---|
2020-10-30 | 3791e37d-c3cd-4e61-8802-76eeee25c08b | JavaScript If Statement |
Syntax
if(true === true) {
console.log("True is true")
}
if (true === false) {
console.log("True is false")
}
else {
console.log("True is not false")
}