跳至内容

网页编程/JS 数组

来自维基教科书,开放的书籍,开放的世界

数组排序

[编辑 | 编辑源代码]
var points = [40, 100, 1, 5, 25, 10]
points.sort((a, b) => a-b)
console.log(points)

可运行代码

数组 Map Reduce

[编辑 | 编辑源代码]
array = [{x:1},{x:2},{x:4}]
newValue = 2
result = array.map(item => item.x==newValue)
  .reduce((a,b)=>a||b)
console.log(result)

可运行代码

数组 Filter

[编辑 | 编辑源代码]
array = [{x:1},{x:2},{x:4}]
newValue = 1
newArray = array.filter(item => item.x>newValue)
console.log(newArray)

可运行代码

数组 Push/Pop

[编辑 | 编辑源代码]
var fruits = ["Orange"]
fruits.push("Kiwi")
console.log(fruits)
fruits.pop()
console.log(fruits)

可运行代码

数组 Shift/Unshift

[编辑 | 编辑源代码]
var fruits = ["Orange", "Kiwi"]
console.log(fruits)
fruits.shift()
console.log(fruits)
fruits.unshift("Apple")
console.log(fruits)

可运行代码

华夏公益教科书