is-odd icon indicating copy to clipboard operation
is-odd copied to clipboard

It's this simple:

Open Reper2 opened this issue 1 year ago • 1 comments

function isOdd(n) { n % 2 != 0 ? console.log("Number is odd.") : console.log("Number is even."); }

isOdd(1) // "Number is odd." isOdd(2) // "Number is even."

Reper2 avatar Apr 07 '23 03:04 Reper2

I don't know if this is all a sick joke at that point.

oshalabydev avatar Aug 29 '23 13:08 oshalabydev