Tell us what’s happening:
How does my random arr is sorted when it is passed to random.sort((a,b)=>a-b)
Can anyone tell me stepwise ?
Your code so far
function getIndexToIns(arr, num) {
// Find my place in this sorted array.
return num;
}
getIndexToIns([40, 60], 50);
let random = [12,14,1,10,8];
console.log(random.sort((a,b)=>a-b));
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36.
Challenge: Where do I Belong
Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-algorithm-scripting/where-do-i-belong