ES6 indexOf()
indexOf()方法返回可在数组中找到给定元素的第一个索引,如果不存在则返回-1。
语法
array.indexOf(searchElement[, fromIndex]);
参数
- searchElement - 要在数组中定位的元素。
- fromIndex - 开始搜索的索引。默认为0,即将搜索整个数组。如果索引大于或等于数组的长度,则返回-1。
返回值
返回找到的元素的索引。
例
var index = [12, 5, 8, 130, 44].indexOf(8);
console.log("index is : " + index )
输出
index is : 2
join()方法将数组的所有元素连接成一个字符串。语法array.join(separator);参数separator - 指定用于分隔数组的每个元素的字符串。如果省略,则使用逗号分隔数组元素。返回值连接所有数组元素 ...