From 02c12af2ae1047031ab58b9f87c9caa82b59c568 Mon Sep 17 00:00:00 2001 From: William Mantly Date: Tue, 28 Jul 2015 18:11:53 -0400 Subject: [PATCH] Update simple-loops.js --- 2- javascript/7-simple-loops/simple-loops.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2- javascript/7-simple-loops/simple-loops.js b/2- javascript/7-simple-loops/simple-loops.js index 5de108c..3e659a6 100644 --- a/2- javascript/7-simple-loops/simple-loops.js +++ b/2- javascript/7-simple-loops/simple-loops.js @@ -15,10 +15,10 @@ function getDogs(array){ // do not edit the assert statements function assert(testnum, bool){ - console.log('Test ' + testnum + ": " + bool) + console.log('Test ' + testnum + ": " + bool); } assert(1, challengeArray === ['New York', 'Burger', 'Philly', 'Burger', 'Jersey', 'Burger', 'Cali', 'Burger']); //Make sure you have the correct array - is the assert test working? Why not? Google! -//Write a custom test that allows it to prove challengeArray's equality. \ No newline at end of file +//Write a custom test that allows it to prove challengeArray's equality.