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

149
Views
Merge two sorted array in one and sort it in javaScript. But sort() doesn't work

My code is :

arr1=[2,6,8,56,78,99,100];
arr2=[1,4,6,8,9,99];
arr3=arr1.concat(arr2);
console.log(arr3);
arr3.sort()
console.log(arr3);

But this sort() function gives wrong result. I don't understand why it is giving that result? It should have sorted arr3.

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

0

You have a misunderstanding. Array.sort does not sort numerical, but alphabetical.

You can use this, however:

Array.sort((a, b)  => { return a - b; });
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!