Web Programming/JS Arrary

Array Sort edit

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

runnable code

Array Map Reduce edit

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

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

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

runnable code

Array Shift/Unshift edit

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

runnable code