From 4ff9c2a6fcb5436c09e9cd91483f08c7504d667f Mon Sep 17 00:00:00 2001 From: Naomi Archibong <50037069+archibongn1@users.noreply.github.com> Date: Fri, 15 Apr 2022 10:13:42 -0500 Subject: [PATCH] feat: update wording for string length (#45602) --- .../basic-javascript/find-the-length-of-a-string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md index e1ca35698b..28e463a453 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md @@ -21,7 +21,7 @@ For example, if we created a variable `const firstName = "Ada"`, we could find o # --instructions-- -Use the `.length` property to count the number of characters in the `lastName` variable and assign it to `lastNameLength`. +Use the `.length` property to set `lastNameLength` to the number of characters in `lastName`. # --hints--