Creare una funzione chiamata " IsInteger " che prende un singolo argomento . Si restituirà true se l'argomento è un intero , e falso otherwise.function IsInteger ( x ) { }
2
assegnare una variabile temporanea il valore di " parseInt ( x ) , " dove x è la variabile che stiamo verificando è un numero intero . Il codice dovrebbe essere simile : Funzione IsInteger ( x ) {var temp = parseInt ( x );}
3
Confronta la variabile TEMP all'originale . Se corrispondono, allora è un numero intero. Il codice dovrebbe leggere : funzione IsInteger ( x ) {var temp = parseInt ( x ), se ( temperatura == x ) { return true ; } return false; }
Programmazione © www.354353.com