Update article.md

This commit is contained in:
Ilya Kantor 2018-12-05 15:55:02 +03:00 committed by GitHub
parent 3a959837f8
commit ad8ab1d55f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
*!*