fix(curriculum): remove before/after-user-code from basic javascript challenges 42-44 (#66469)

This commit is contained in:
Sem Bauke
2026-03-15 18:19:24 +01:00
committed by GitHub
parent 981a971028
commit db2ced37a7
3 changed files with 0 additions and 18 deletions

View File

@@ -42,12 +42,6 @@ assert(typeof myArray[1] !== 'undefined' && typeof myArray[1] == 'number');
# --seed--
## --after-user-code--
```js
(function(z){return z;})(myArray);
```
## --seed-contents--
```js

View File

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

View File

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