Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

140
Views
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 ?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!