fix(curriculum): make string untranslatable in JS words blank challenge (#49779)

fix(curriculum): protect example from translation
This commit is contained in:
Ian Vandeventer
2023-03-21 12:44:06 -07:00
committed by GitHub
parent b6c727dded
commit 982878948f
@@ -11,7 +11,13 @@ dashedName: word-blanks
You are provided sentences with some missing words, like nouns, verbs, adjectives and adverbs. You then fill in the missing pieces with words of your choice in a way that the completed sentence makes sense.
Consider this sentence - It was really **\_\_\_\_**, and we **\_\_\_\_** ourselves **\_\_\_\_**. This sentence has three missing pieces- an adjective, a verb and an adverb, and we can add words of our choice to complete it. We can then assign the completed sentence to a variable as follows:
Consider this sentence:
```md
It was really ____, and we ____ ourselves ____.
```
This sentence has three missing pieces- an adjective, a verb and an adverb, and we can add words of our choice to complete it. We can then assign the completed sentence to a variable as follows:
```js
const sentence = "It was really " + "hot" + ", and we " + "laughed" + " ourselves " + "silly" + ".";