Challenge Manipulate Arrays With Unshift - thelastmile/FreeCodeCamp GitHub Wiki
Challenge Manipulate Arrays With unshift
myArray.unshift('Paul');
Basically you call unshift
and pass what was deleted.
myArray.unshift('Paul');
Basically you call unshift
and pass what was deleted.