odin-fizzbuzz/index.js

7 lines
163 B
JavaScript
Raw Normal View History

2024-01-02 18:46:04 +00:00
let number = parseInt(prompt('FizzBuzz: Input a total number'));
if (isNaN(number)) {
alert("Not a number, refreshing");
location.reload();
} else {
}