From 2cc990c8e1013d7dd7fa781561f4990c1f5a66e7 Mon Sep 17 00:00:00 2001 From: Rakesh Date: Mon, 31 Jan 2022 11:59:56 +0530 Subject: [PATCH] fix: grammer removing unnecessary `and` from the sentence --- book/content/part02/array.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/content/part02/array.asc b/book/content/part02/array.asc index 3bde2929..dd0e51f7 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