Ad
  • Default User Avatar

    u r returning something with solution

  • Custom User Avatar

    how easy this would be if it was military time....... if only :(

  • Custom User Avatar

    If you attempted to delete elements of an array without using the .splice() method, a blank - 'undefined' - element is left in the array at that spot. Try pushing only the elements of interest to a new array, or using splice instead of delete.

  • Custom User Avatar
    Expected: '[\'arp\', \'live\', \'strong\']', instead got: '[\'arp\', \'live\', \'strong\', undefined]'
    

    Can anyone explain what's going on here?