chore(curriculum): Statistics Calculator add quotes to strings (#55686)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Supravisor
2024-09-03 22:17:58 +12:00
committed by GitHub
parent 06d8467556
commit 8debeb2d29

View File

@@ -19,7 +19,7 @@ Your `calculate` function should have a `value` variable.
assert.match(calculate.toString(), /value/);
```
Your `calculate` function should call `document.querySelector()` with `#numbers` as the argument.
Your `calculate` function should call `document.querySelector()` with `"#numbers"` as the argument.
```js
assert.match(calculate.toString(), /document\.querySelector\(\s*("|')#numbers\1\s*\)/)