Merge pull request #803 from adamcnaglich/patch-1

Added a missing comma
This commit is contained in:
Ilya Kantor 2019-02-14 11:51:43 +03:00 committed by GitHub
commit a2392f3e9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ The first thing we'll study is the building blocks of code.
Statements are syntax constructs and commands that perform actions. Statements are syntax constructs and commands that perform actions.
We've already seen a statement, `alert('Hello, world!')`, which shows the message "Hello world!". We've already seen a statement, `alert('Hello, world!')`, which shows the message "Hello, world!".
We can have as many statements in our code as we want. Statements can be separated with a semicolon. We can have as many statements in our code as we want. Statements can be separated with a semicolon.