“var oddoreven = funkcja (num) {};” Kod odpowiedzi

JS nawet lub

function isEven(n) {
   return n % 2 == 0;
}

function isOdd(n) {
   return Math.abs(n % 2) == 1;
}
Hafez

Dziwne, a nawet JS

for(let count =0; count<=100;count++){
 count%2==0? console.log(`${count} is even`):console.log(`${count} is odd`);
 ;
}
Philan ISithembiso

var oddoreven = funkcja (num) {};

var oddOrEven = function(num) {
    if (num % 2 == 0) {
		return 'even';
	} else {
		return 'odd';
	};
};
Brithnie Estime

Odpowiedzi podobne do “var oddoreven = funkcja (num) {};”

Pytania podobne do “var oddoreven = funkcja (num) {};”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu