[Javascript] JavaScript Array Methods in Depth

Array push is used to add elements to the end of an Array. In this lesson we'll see how the push method accepts multiple arguments, can be used to merge two arrays,.

Push can accept multi args:

const pets = ["dog", "hamster"];
pets.push("cat");
console.log(pets); //["dog", "hamster", "cat"]

pets.push("brid", "horse");
console.log(pets); //["dog", "hamster", "cat", "brid", "horse"]

Push can merge two arrays:

const pets = ["dog", "hamster"];
const pets2 = ["Hamster", "cat"];
pets.push.apply(pets, pets2);
console.log(pets); //["dog", "hamster", "Hamster", "cat"]
原文地址:https://www.cnblogs.com/Answer1215/p/5385346.html