What property do you use to determine the number of elements in an array in most programming languages?
Which array method is used to add one or more elements to the end of an array and return the new length of the array?
What array operation removes the last element from an array and returns that element?
Which array method adds one or more elements to the beginning of an array and returns the new length of the array?
What array operation removes the first element from an array and returns that element?
Which array method is used to add or remove elements from an array at a specific index?
Which method returns a shallow copy of a portion of an array into a new array object selected from start to end (end not included) where start and end represent the index of items in that array?
What method is used to find the first index at which a given element can be found in the array, or -1 if it is not present?
Which array method determines whether an array includes a certain value among its entries, returning true or false as appropriate?
Which array method creates and returns a new string by concatenating all of the elements in an array, separated by commas or a specified separator string?