michaelp0730
1/19/2015 - 6:36 PM

Number Sort

Douglas Crockford

var n = [32, 4, 16, 8, 15];

n.sort(function (a, b) {
	return a - b;
});