“Divisible Check JavaScript” Kod odpowiedzi

Divisible Check JavaScript

if (x & 1)
 itsOdd();
else
 itsEven();
Stormy Skipper

Divisible Check JavaScript

(function() {
    /*
     * isEven(n)
     * @args number n
     * @return boolean returns whether the given number is even
     */
    jQuery.isEven = function(number) {
        return number % 2 == 0;
    };

    /* isOdd(n)
     * @args number n
     * @return boolean returns whether the given number is odd
     */
    jQuery.isOdd = function(number) {
        return !jQuery.isEven(number);
    };
})();​
Stormy Skipper

Odpowiedzi podobne do “Divisible Check JavaScript”

Pytania podobne do “Divisible Check JavaScript”

Więcej pokrewnych odpowiedzi na “Divisible Check JavaScript” w JavaScript

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

Przeglądaj inne języki kodu