📜  js 推送数组 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:09.228000             🧑  作者: 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