📜  数组推送方法 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:28.411000             🧑  作者: Mango

代码示例6
var vegetables = ['Capsicum',' Carrot','Cucumber','Onion'];
vegetables.push('Okra');
//expected output ['Capsicum',' Carrot','Cucumber','Onion','Okra']; 
// .push adds a thing at the last of an array