Skip to content

Challenge Sort Arrays With Sort

Quincy Larson edited this page Aug 20, 2016 · 1 revision

Challenge Sort Arrays with Sort

You can use the method sort to easily sort the values in the array alphabetically or numerically

var array = [1,3,2];

array = array.sort();

This will return [1, 2, 3]

Clone this wiki locally