Web Programming/JS Arrary

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Array Sort

[edit | edit source]
var points = [40, 100, 1, 5, 25, 10]
points.sort((a, b) => a-b)
console.log(points)

runnable code

Array Map Reduce

[edit | edit source]
array = [{x:1},{x:2},{x:4}]
newValue = 2
result = array.map(item => item.x==newValue)
  .reduce((a,b)=>a||b)
console.log(result)

runnable code

Array Filter

[edit | edit source]
array = [{x:1},{x:2},{x:4}]
newValue = 1
newArray = array.filter(item => item.x>newValue)
console.log(newArray)

runnable code

Array Push/Pop

[edit | edit source]
var fruits = ["Orange"]
fruits.push("Kiwi")
console.log(fruits)
fruits.pop()
console.log(fruits)

runnable code

Array Shift/Unshift

[edit | edit source]
var fruits = ["Orange", "Kiwi"]
console.log(fruits)
fruits.shift()
console.log(fruits)
fruits.unshift("Apple")
console.log(fruits)

runnable code