Question: Write a JavaScript function that given an array of numbers, returns another array of the same numbers sorted from the smallest number to the largest
Write a JavaScript function that given an array of numbers, returns another array of the same numbers sorted from the smallest number to the largest number.
Providing the function this array [23, 12, 16, 700, 99, 27]
should return this array
[12, 16, 23, 27, 99, 700]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
