fix(curriculum): update instruction note phrasing (#55153)

This commit is contained in:
erik-lynch
2024-06-11 04:38:48 -05:00
committed by GitHub
parent be11225f11
commit cd4aeeeba8

View File

@@ -9,7 +9,7 @@ dashedName: step-3
JavaScript has seven primitive data types, with `String` being one of them. In JavaScript, a <dfn>string</dfn> represents a sequence of characters and can be enclosed in either single (`'`) or double (`"`) quotes.
Note that strings are <dfn>immutable</dfn>, which means once they are created, they cannot be changed.
Note that strings are <dfn>immutable</dfn>, which means once they are created, they cannot be changed. The variable can still be reassigned another value.
Change your `"Hello"` string to use single quotes.