From 5ecfdd65f7a35f0102ce38344e1a248e77cf0402 Mon Sep 17 00:00:00 2001 From: Mridul Nagpal Date: Wed, 30 Nov 2016 04:09:48 +0530 Subject: [PATCH] Clarify instructions for "Understand String Immutability" (#11737) This commit clarifies instructions for "Understand String Immutability". --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index c1e8c1f9c7..d38171ca53 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -1535,7 +1535,7 @@ "cannot change the value of myStr to \"Job\", because the contents of myStr cannot be altered. Note that this does not mean that myStr cannot be changed, just that the individual characters of a string literal cannot be changed. The only way to change myStr would be to assign it with a new string, like this:", "
var myStr = \"Bob\";
myStr = \"Job\";
", "

Instructions

", - "Correct the assignment to myStr to achieve the desired effect." + "Correct the assignment to myStr to achieve the desired effect that is intended by myStr[0] = \"H\" ;." ], "releasedOn": "January 1, 2016", "challengeSeed": [