fix: constants and if code and quizzes

This commit is contained in:
Inanc Gumus
2018-11-11 15:59:28 +03:00
parent b267671da1
commit 95be6d2d3c
3 changed files with 21 additions and 21 deletions

View File

@@ -15,10 +15,10 @@ if (mood == "perfect") {
}
```
1. `if {mood == perfect}`
2. `if [mood == perfect]`
3. `if mood = perfect`
4. `if mood == perfect` *CORRECT*
1. `if {mood == "perfect"}`
2. `if [mood == "perfect"]`
3. `if mood = "perfect"`
4. `if mood == "perfect"` *CORRECT*
> **1, 2:** That's a syntax error. Try again.
>