Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 292 Bytes

File metadata and controls

11 lines (9 loc) · 292 Bytes

#Sort Array in JavaScript

const months = ['March', 'Jan', 'Feb', 'Dec']; months.sort(); console.log(months); // expected output: Array ["Dec", "Feb", "Jan", "March"]

const array1 = [1, 30, 4, 21, 100000]; array1.sort(); console.log(array1); // expected output: Array [1, 100000, 21, 30, 4]