From 919cd693d1604824566a605d879bc3aa7e1e1ff3 Mon Sep 17 00:00:00 2001 From: Pavel Tsurbeleu Date: Mon, 5 Mar 2018 20:16:23 -0800 Subject: [PATCH] Improve instructions of "Global vs Local Scope in Functions" challenge (#16832) --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index d1fd6ed83c..56dcd45359 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -2562,7 +2562,7 @@ "
var someVar = \"Hat\";
function myFun() {
var someVar = \"Head\";
return someVar;
}
", "The function myFun will return \"Head\" because the local version of the variable is present.", "
", - "Add a local variable to myOutfit to override the value of outerWear with \"sweater\"." + "Add a local variable to myOutfit function to override the value of outerWear with \"sweater\"." ], "releasedOn": "January 1, 2016", "challengeSeed": [