我开始学习javascript,我需要一些帮助 我需要在数组中插入提示输入并从中读取。
var array = [
["Cat","Black","Awesome"],
["Dog","White","Funny"],
["Chicken","Brown","Delicious"]
];
array.push(prompt("Animal name:"));
array.push(prompt("Animal color:"));
array.push(prompt("Type or something:"));
如果我这样做,我想把它写出来,输出是:
Cat,Black,Awesome
Dog,White,Funny
Chicken,Brown,Delicious
我的提示输出是(例子):
Elephant
Blue
Big
如何将提示插入到数组中,输出将如上所述。
非常感谢您的回答 我知道这是一些基本的东西,但我已经检查过很多网站而无法找到答案。
答案 0 :(得分:1)
您没有将数组推入您的第一个数组值,这就是为什么它看起来不一样。您可以简单地将提示值检索到第一个数组中,然后将此数组推送到另一个数组中。
var firstArray = [
["Cat","Black","Awesome"],
["Dog","White","Funny"],
["Chicken","Brown","Delicious"]
];
var tempArray = [];
tempArray.push(prompt("Animal name:"));
tempArray.push(prompt("Animal color:"));
tempArray.push(prompt("Type or something:"));
firstArray.push(tempArray);