about summary refs log tree commit diff
path: root/usth/ICT3.2/prac/2/5.js
blob: ee502b752edc2d3c56c4d9076aa4339d6a91809b (plain) (blame)
1
2
for (let i = 1; i < 16; ++i)
    console.log(i % 2 ? `${i} is odd` : `${i} is even`);