fix(learn): removed use strict from various challenges (#40321)

This commit is contained in:
Ilenia
2020-11-26 00:59:04 +01:00
committed by GitHub
parent 7ce8c58709
commit f294d9cacc
9 changed files with 0 additions and 21 deletions

View File

@ -57,7 +57,6 @@ tests:
```js
function myLocalScope() {
'use strict';
// Only change code below this line
@ -81,7 +80,6 @@ console.log('outside myLocalScope', myVar);
```js
function myLocalScope() {
'use strict';
// Only change code below this line
var myVar;