From e4c6883a2059390c2fcdd6edda92e9be7274e10c Mon Sep 17 00:00:00 2001 From: Luke Harrison Date: Thu, 5 May 2022 13:05:30 -0400 Subject: [PATCH] fix(curriculum): updated wording on understanding uninitialized variables (#45860) * updated wording on understanding uninitialized variables * updated wording for case b to match case a * updated case c to match the wording of both case a and b --- .../understanding-uninitialized-variables.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables.md index 8b1bc837c81..27fe3157eec 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-uninitialized-variables.md @@ -17,19 +17,19 @@ Initialize the three variables `a`, `b`, and `c` with `5`, `10`, and `"I am a"` # --hints-- -`a` should be defined and evaluated to have the value of `6`. +`a` should be defined and have a final value of `6`. ```js assert(typeof a === 'number' && a === 6); ``` -`b` should be defined and evaluated to have the value of `15`. +`b` should be defined and have a final value of `15`. ```js assert(typeof b === 'number' && b === 15); ``` -`c` should not contain `undefined` and should have a value of the string `I am a String!` +`c` should not contain `undefined` and should have a final value of the string `I am a String!` ```js assert(!/undefined/.test(c) && c === 'I am a String!');