📌  相关文章
📜  如何在javascript代码示例中将字符串推入数组

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

代码示例2
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