在下面的示例中,我想一次提取“ apple”,“ orange”和“ kiwi”,并在控制台中显示它们。我不确定如何编写arrayExample[0 && 1 && 2]

arrayExample = ["apple", "orange", "kiwi", "banana", "melon", "peach"];

console.log(arrayExample[0 && 1 && 2]);

最佳答案

您想要将数组的元素附加到字符串中。

在Javascript中,您可以使用+运算符附加字符串(数组元素为字符串)。

类似于以下内容:

console.log(arrayExample[0] + " " + arrayExample[1] + " " + arrayExample[2]);

08-19 07:00