fix(curriculum): remove before/after-user-code from basic javascript challenges 1-4 (#66452)

This commit is contained in:
Sem Bauke
2026-03-14 19:26:22 +01:00
committed by GitHub
parent f426690248
commit 3be00dacda
4 changed files with 0 additions and 24 deletions

View File

@@ -42,12 +42,6 @@ assert.deepEqual(myArray, [1, 3, 5, 7, 9]);
# --seed--
## --after-user-code--
```js
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
```
## --seed-contents--
```js

View File

@@ -50,12 +50,6 @@ assert.deepEqual(myArray, [9, 7, 5, 3, 1]);
# --seed--
## --after-user-code--
```js
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
```
## --seed-contents--
```js

View File

@@ -46,12 +46,6 @@ assert(
# --seed--
## --after-user-code--
```js
(function(a,b,c){ return "a = " + a + ", b = " + b + ", c = '" + c + "'"; })(a,b,c);
```
## --seed-contents--
```js

View File

@@ -56,12 +56,6 @@ assert(/let myVar = 87;/.test(__helpers.removeJSComments(code)));
# --seed--
## --after-user-code--
```js
(function(z){return 'myVar = ' + z;})(myVar);
```
## --seed-contents--
```js