Skip to content

Instantly share code, notes, and snippets.

@codenamezjames
Last active August 17, 2017 19:41
Show Gist options
  • Save codenamezjames/7f4fc48d06b118e4379c130208725424 to your computer and use it in GitHub Desktop.
Save codenamezjames/7f4fc48d06b118e4379c130208725424 to your computer and use it in GitHub Desktop.
const arr = [1,2,3,4,5,6,7,8]
const arrCopy = arr.reduce(function(lastVal, currentVal){
lastVal.push(currentVal)
return lastVal // whate ever we return gets used as the next "lastVal" paramater
}, [])//this empty array argument gets used as "lastVal" on the loops first iteration
arr.push(9)// altering the first array
console.log(arr)
console.log(arrCopy)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment