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