for(let count =0; count<=100;count++){ count%2==0? console.log(`${count} is even`):console.log(`${count} is odd`); ; }