Skip to content

Fix code formatting #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ If it’s `False`, the code will not run.

```javascript
if (hour < 18) {
greeting = "Good day";
greeting = "Good day";
}
```
if statements by themselves default to `True`.
Expand All @@ -144,9 +144,9 @@ if statements by themselves default to `True`.

```javascript
if (hour < 18) {
greeting = "Good day";
} else
{ greeting = “Go away.”;
greeting = "Good day";
} else {
greeting = “Go away.”;
}
```

Expand All @@ -156,11 +156,13 @@ if (hour < 18) {

Add an `else if` in between the `if` and `else` statements.
```javascript
if (hour < 18)
{greeting = "Good day";}
else if (hour < 9)
{greeting = “OK day”;}
else {greeting = “Go away.”;}
if (hour < 18) {
greeting = "Good day";
} else if (hour < 9) {
greeting = “OK day”;
} else {
greeting = “Go away.”;
}
```
_This code is actually broken. Can you figure out why?_

Expand Down