Last active
August 17, 2017 19:41
-
-
Save codenamezjames/7f4fc48d06b118e4379c130208725424 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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