Skip to content

Commit 3bb507f

Browse files
author
Matthew Diana
committed
Added ; to the end of both object declarations
1 parent 1ee5b58 commit 3bb507f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

problems/objects/problem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Here is an example:
1010
var foodPreferences = {
1111
pizza: 'yum',
1212
salad: 'gross'
13-
}
13+
};
1414
```
1515

1616
## The challenge:
@@ -24,7 +24,7 @@ var pizza = {
2424
toppings: ['cheese', 'sauce', 'pepperoni'],
2525
crust: 'deep dish',
2626
serves: 2
27-
}
27+
};
2828
```
2929

3030
Use `console.log()` to print the `pizza` object to the terminal.

0 commit comments

Comments
 (0)