We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a95983 commit ad8ab1dCopy full SHA for ad8ab1d
1 file changed
1-js/02-first-steps/04-variables/article.md
@@ -219,9 +219,9 @@ num = 5; // the variable "num" is created if didn't exist
219
alert(num); // 5
220
```
221
222
-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:
223
224
-```js run refresh untrusted
+```js
225
"use strict";
226
227
*!*
0 commit comments