Skip to content

Commit 41353a0

Browse files
author
David Banks
committed
add missing semicolon
1 parent 186f306 commit 41353a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/lesson2/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Objects are very important in JavaScript. In fact, you've already used a special
243243
They are special kinds of data, with **properties** and **methods**
244244

245245
```js
246-
var message = "It's cold today"
246+
var message = "It's cold today";
247247
console.log(message.length); // using length property
248248
console.log(message.toUpperCase()); // using toUpperCase() method
249249
```

0 commit comments

Comments
 (0)