I'm currently reviewing the descending number sorting code below and I'm feeling a bit confused:
var points = [40, 100, 1, 5, 25, 10];
points.sort(function(a, b){return b - a});
In the given code, the return value will be (b-a), for example, 100 - 40 = 60. However, there is no 60 in the array provided.