BITWISE OR

automatic odd

by Steven Senkus

JavaScript

for (var i = 0; i < 20; i++) {
    console.log(i,i % 5 == 0,i | 1)
}