function NumeroPari(num) {

return ((num % 2) == 0);

};

NumeroPari(2) // restituisce true
NumeroPari(1) // restituisce false