• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
    • Questions
    • Teachers
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

116
Views
Assigning value to an array or object inside a function

I am learning javascript and I read that in javascript array and objects are by default passed as a reference. So when I do this:-

var a = [2, 3, 4]

function pushEl(a, num) {
  a.push(num)
}

pushEl(a, 5)

console.log(a)

The output is as expected which is

[2,3,4,5]

But what I am not able to understand is that when I assign value to an array or an object inside the function the original array/object is not changed.

var a = [2, 1, 3]

function change(a) {
  a = [1, 2]
}

change(a)

console.log(a)

I expect the output to be [1,2] but the output is [2,1,3].

If the array is passed by reference then the changes should have been reflected in the original array too.

Can anybody tell me what concept I'm missing here?

almost 3 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error