Ad
  • Default User Avatar

    My code:

    function isIntArray(arr) {
    if(arr == []) {
    return true;
    }
    }

    is returning "undefined" on the first test - how??