Update simple-loops.js

This commit is contained in:
William Mantly 2015-07-28 18:11:53 -04:00
parent 59b7f7df9b
commit 02c12af2ae

View File

@ -15,7 +15,7 @@ function getDogs(array){
// do not edit the assert statements // do not edit the assert statements
function assert(testnum, bool){ 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']); assert(1, challengeArray === ['New York', 'Burger', 'Philly', 'Burger', 'Jersey', 'Burger', 'Cali', 'Burger']);