Q. The pop() method of the array does which of the following task ?
β
Correct Answer: (A)
decrements the total length by 1
Explanation: Arrays have a pop() method (it works with push()) that reduces the length of an array by 1 but also returns the value of the deleted element.