Skip to content

Commit

Permalink
Update article.md
Browse files Browse the repository at this point in the history
  • Loading branch information
iliakan authored Dec 5, 2018
1 parent 3a95983 commit ad8ab1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 1-js/02-first-steps/04-variables/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ num = 5; // the variable "num" is created if didn't exist
alert(num); // 5
```

That's a bad practice, it gives an error in the strict mode:
That's a bad practice, it would give an error in the strict mode:

```js run refresh untrusted
```js
"use strict";

*!*
Expand Down

0 comments on commit ad8ab1d

Please sign in to comment.