Provjerite je li broj paran / neparan - CSS-trikovi

Anonim
function isEven(value) ( if (value%2 == 0) return true; else return false; )