fix(learn): address translator comments (#41381)

* fix(learn): address translator comments

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/quoting-strings-with-single-quotes.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
Nicholas Carrigan (he/him)
2021-03-09 06:15:26 -08:00
committed by GitHub
parent 93495ef6db
commit 77730ae209
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ Right now, the `<a>` tag in the string uses double quotes everywhere. You will n
# --hints--
You should remove all the `backslashes` (<code>\\</code>).
You should remove all the backslashes (`\`).
```js
assert(

View File

@ -39,7 +39,7 @@ Use the conditional operator in the `checkEqual` function to check if two number
# --hints--
`checkEqual` should use the `conditional operator`
`checkEqual` should use the conditional operator
```js
assert(/.+?\s*?\?\s*?.+?\s*?:\s*?.+?/.test(code));