for (let i = 1; i < 16; ++i) console.log(i % 2 ? `${i} is odd` : `${i} is even`);