fix(curriculum): remove before/after-user-code from basic javascript challenges 48-50 (#66471)

This commit is contained in:
Sem Bauke
2026-03-15 18:21:26 +01:00
committed by GitHub
parent db2ced37a7
commit 877f36aed4
3 changed files with 0 additions and 18 deletions
@@ -30,12 +30,6 @@ assert(Array.isArray(myArray) && myArray.some(Array.isArray));
# --seed--
## --after-user-code--
```js
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
```
## --seed-contents--
```js
@@ -62,12 +62,6 @@ assert(
# --seed--
## --after-user-code--
```js
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
```
## --seed-contents--
```js
@@ -40,12 +40,6 @@ assert(__helpers.removeJSComments(code).match(/Math\.random/g).length >= 0);
# --seed--
## --after-user-code--
```js
(function(){return randomFraction();})();
```
## --seed-contents--
```js