()
| 37 | |
| 38 | // Sort users by richest |
| 39 | function sortByRichest() { |
| 40 | console.log(123); |
| 41 | data.sort((a, b) => b.money - a.money); |
| 42 | |
| 43 | updateDOM(); |
| 44 | } |
| 45 | |
| 46 | // Filter only millionaires |
| 47 | function showMillionaires() { |
nothing calls this directly
no test coverage detected