From ebf1530d6fb5af835c4708fc0aa5aeeb5cb340b1 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Sat, 22 Aug 2015 17:40:59 -0700 Subject: [PATCH] update JavaScript copy from pull request --- seed/challenges/basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 5ee5ee83d7..cf16fb13db 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -1277,8 +1277,8 @@ "description":[ "Now that our slots will each generate random numbers, we need to check whether they've all returned the same number.", "If they have, we should notify our user that they've won.", - "Otherwise, we should return null, which is a JavaScript literal representing null or an \"empty\" value, i.e. no object value is present.", - "If all three numbers match, we should return the number that we have in three of slots or leave it as null.", + "Otherwise, we should return null, which is a JavaScript data structure that means nothing.", + "If all three numbers match, we should return the number that we have in three of slots or leave it as null.", "Let's create an if statement with multiple conditions in order to check whether all numbers are equal.", "if(slotOne !== slotTwo || slotTwo !== slotThree){", "  return(null);",