(min, max)
| 1 | export function sideBarFun() { |
| 2 | function randomInteger(min, max) { |
| 3 | return Math.floor(Math.random() * (max - min + 1)) + min; |
| 4 | } |
| 5 | |
| 6 | function change(hold, tag, min, max, unit) { |
| 7 | $(hold + tag).text(randomInteger(min, max) + unit) |
no outgoing calls
no test coverage detected