main.js 248 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
function comprobarNumero(numero) {
    if (numero % 5 == 0 && numero % 11 == 0) {
        console.log("Si es divisible por 5 y 11 ");
    } else {
        console.log("No es divisible por 5 y 11 ");
    }
}
comprobarNumero(25);
comprobarNumero(55);