Adds one or more elements to the beginning of an array and returns the new length.Examples:
let fruits = ['banana']; fruits.unshift('apple'); console.log(fruits); // ['apple', 'banana']
fruits.unshift('orange', 'pear'); console.log(fruits); // ['orange', 'pear', 'apple', 'banana']