Be careful with the inputsize, too high can crash the browser window!
function oddEvenNumber (n) { if (n % 2 === 0) { console.log('Even number.'); } else { console.log('Odd number.'); }}
Clear data