(num)
| 15 | } |
| 16 | |
| 17 | function printOutput(num) { |
| 18 | getElementById("output-value").textContent = |
| 19 | num === "" ? num : getFormattedNumber(num); |
| 20 | } |
| 21 | |
| 22 | // Formatting and reversing number functions |
| 23 | function getFormattedNumber(num) { |
no test coverage detected