简体   繁体   中英

Question regarding Javascript Assignment Operator

I am writing the following code

let text = 'abbade'
let firstArray = text.split('')
console.log(firstArray [0], '1st answer')

let secondArray = firstArray .reverse()
console.log(firstArray [0], '2nd answer')

I am expecting the value of the 1st answer and the 2nd answer to be the same. Instead, the first answer is 'a' while the 2nd answer is 'e'. Can any one enlighten me why this is so?

Why does declaring let secondArray = firstArray.reverse() seem to affect firstArray?

The reverse method is a destructive method, meaning it changes the original array.

when you assigned secondArray = firstArray.reverse(), it made made permanent changes to the first array itself

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM