You are viewing a single comment's thread. Return to all comments →
JavaScript:
if (n % 2 !== 0 || (n % 2 === 0 && n >= 6 && n <= 20)) console.log('Weird') else console.log('Not Weird');
Day 3: Intro to Conditional Statements
You are viewing a single comment's thread. Return to all comments →
JavaScript: