fix(curriculum): remove before/after-user-code from basic javascript challenges 9-12 (#66454)

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

View File

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

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

@@ -46,18 +46,6 @@ assert(/I am a "double quoted" string inside "double quotes(\."|"\.)$/.test(mySt
# --seed--
## --after-user-code--
```js
(function(){
if(typeof myStr === 'string') {
console.log("myStr = \"" + myStr + "\"");
} else {
console.log("myStr is undefined");
}
})();
```
## --seed-contents--
```js

View File

@@ -63,18 +63,6 @@ assert(/myStr\s*=/.test(__helpers.removeJSComments(code)));
# --seed--
## --after-user-code--
```js
(function(){
if(typeof myStr === 'string') {
return 'myStr = "' + myStr + '"';
} else {
return 'myStr is not a string';
}
})();
```
## --seed-contents--
```js