diff --git a/book/content/part02/array.asc b/book/content/part02/array.asc index 3bde292..dd0e51f 100644 --- a/book/content/part02/array.asc +++ b/book/content/part02/array.asc @@ -49,7 +49,7 @@ string[1] = "z"; // doesn't change the string. console.log(string[1]); // "e" ---- -WARNING: When you try to modify and string, you won't get an error or anything. It just gets ignored! Your only option is to create a new string with the adjusted value. +WARNING: When you try to modify string, you won't get an error or anything. It just gets ignored! Your only option is to create a new string with the adjusted value. ===== Insertion