Write a method largestFirst that takes in an array of numbers, and returns the numbers, sorted greatest to least - the reverse of the previous function. code example
Example: sort array of objects in ascending order in js
homes.sort(function(a, b) {
return parseFloat(a.price) - parseFloat(b.price);
});