Added a missing comma

This commit is contained in:
Adam Naglich 2019-02-13 15:05:23 -05:00 committed by GitHub
parent c089ff7cf4
commit 1419ecbf51
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.