Hello Dev's in this video I spoke about the Sort the number Array in JavaScript.
const NumberArray = [10, 9, 7, 8, 3, 6, 4, 1];
console.log(NumberArray.sort((a, b) = a - b));
console.log(NumberArray[0]);
#javascript, #html, #css3, #interview