From 05db23088cc69dcedd350851ac5427f00d43303e Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Fri, 4 Sep 2015 15:22:45 -0700 Subject: [PATCH] fix typeof wording --- challenges/automated-testing-and-debugging.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/automated-testing-and-debugging.json b/challenges/automated-testing-and-debugging.json index 9cf677a024..2fbb5352d7 100644 --- a/challenges/automated-testing-and-debugging.json +++ b/challenges/automated-testing-and-debugging.json @@ -28,9 +28,9 @@ "title":"Using typeof", "difficulty":0, "description":[ - "typeof is a useful method that we can use to check the type of a variable.", - "One thing to be careful of is that an array has the type objects.", - "Try using each of these to see the types they have.", + "You can use typeof to check the data structure, or type, of a variable.", + "Note that in JavaScript, arrays are technically a type of object.", + "Try using typeof on each of the following to see which types they have.", "console.log(typeof(\"\"));", "console.log(typeof(0));", "console.log(typeof([]));",