Skip to content

Instantly share code, notes, and snippets.

@McLarenCollege
Last active October 28, 2021 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McLarenCollege/4a0dcb3b8da1b29536ad269bed240c76 to your computer and use it in GitHub Desktop.
Save McLarenCollege/4a0dcb3b8da1b29536ad269bed240c76 to your computer and use it in GitHub Desktop.
Exercise : Various Array Methods
let arr = [4,7];
//part 1  use unshift method to add 7 to the list and print the array.
//part 2- use push method to add 10 and 2 to the list  and print the array.
//part 3- use shift method twice to remove first two items from the list  and print the array.
//part 4- use pop method to remove the last item from the list  and print the array.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment