要将数组内容用序号连接,你可以使用JavaScript的`Array.prototype.map()`方法和`Array.prototype.join()`方法来实现。
下面是一个示例代码:
```javascript
const arr = ["apple", "banana", "orange"];
const joinedString = arr.map((item, index) => `${index + 1}. ${item}`).join(", ");
console.log(joinedString);
```
运行以上代码,输出结果将会是:
```
1. apple, 2. banana, 3. orange
```
上述代码中,`map()`方法用于将数组中的每个元素都添加序号,并返回一个新数组。`${index + 1}. ${item}`用于生成带有序号的字符串。最后,`join(", ")`方法用于将新数组中的每个字符串用逗号和空格连接起来,生成最终的结果字符串。
标签:index,join,map,js,item,数组,序号 From: https://www.cnblogs.com/gaosj20210301/p/17559303.html