题解 | #添加元素#
添加元素
https://www.nowcoder.com/practice/93994cb28b1c4ec5ad7da4f9c33ebfbe
function prepend(arr, item) {
let newArr = [];
return newArr = [item,...arr]
}
通过扩展运算符直接接收
#刷题coding#添加元素
https://www.nowcoder.com/practice/93994cb28b1c4ec5ad7da4f9c33ebfbe
function prepend(arr, item) {
let newArr = [];
return newArr = [item,...arr]
}
通过扩展运算符直接接收
#刷题coding#相关推荐
招聘动态