fix(curriculum): remove before/after-user-code from basic javascript challenges 5-8 (#66453)

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

View File

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

View File

@@ -55,14 +55,6 @@ assert(/\s+?remainder\s*?=\s*?.*%.*;?/.test(__helpers.removeJSComments(code)));
# --seed--
## --after-user-code--
```js
(function (y) {
return 'remainder = ' + y;
})(remainder);
```
## --seed-contents--
```js

View File

@@ -68,12 +68,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

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