Array mutation methods directly modify the original array.
push
: Adds elements to the end.pop
: Removes the last element.shift
: Removes the first element.unshift
: Adds elements to the beginning.splice
: Adds/removes elements at a specific index.
Example:
const arr = [1, 2, 3];
arr.push(4); // [1, 2, 3, 4]
arr.pop(); // [1, 2, 3]
Tags: basic, JavaScript, Arrays