JS Algorithm Practice
Strings
Arrays
Objects
Methods
Strings
Arrays
Objects
Methods
Array - push
Create a function:
addWithPush(arr, item)
It:
adds <item> to the end of array <arr>
Show Answer