fix(learn): clear instructions for basic JavaScript: Appending Variables to Strings lesson (#39587)

This commit is contained in:
Gaurav Khairnar 2020-09-17 23:30:58 +05:30 committed by GitHub
parent 6021a32de9
commit a338d4b79d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ ourStr += anAdjective;
## Instructions
<section id='instructions'>
Set <code>someAdjective</code> and append it to <code>myStr</code> using the <code>+=</code> operator.
Set <code>someAdjective</code> to a string of at least 3 characters and append it to <code>myStr</code> using the <code>+=</code> operator.
</section>
## Tests