#Not sure what I'm doing wrong here

6 messages · Page 1 of 1 (latest)

mortal bronze
#

I'm doing a quiz on execute program and I didn't think I was this novice but I can't see what I'm doing wrong here

heavy mulch
#

You used one = instead of two or three. One is for assignment. Two is for checking loose equality. Three is for checking strict equality.

mortal bronze
#

This is what I have changed and still isn't working

#

function isEmpty(arr) {
let arr = [];
if (arr. length == 0){
return true;}
else {
return false};
}

#

it doesn't seem like that is the problem

heavy mulch