Added escape characters to the javascript comment curriculum (#37518)

This commit is contained in:
burrowsdt 2019-10-25 14:41:42 -04:00 committed by Tom
parent 506f250599
commit dd8168133f

View File

@ -16,7 +16,7 @@ Using <code>//</code> will tell JavaScript to ignore the remainder of the text o
// This is an in-line comment.
```
You can make a multi-line comment beginning with <code>/*</code> and ending with <code>*/</code>:
You can make a multi-line comment beginning with <code>/\*</code> and ending with <code>\*/</code>:
```js
/* This is a