jxeidy7796 jxeidy7796 20-01-2023 Computers and Technology contestada identify a compare function that sorts numeric values in ascending order. function ascending(b, a) { return a; } function ascending(a, b) { return b - a; } function ascending(a, b) { return a - b; } function ascending(b, a) { return b; }