[phpBB Debug] PHP Warning: in file [ROOT]/ext/dmzx/ultimatepoints/event/listener.php on line 438: Trying to access array offset on value of type bool
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4626: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3358)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4626: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3358)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4626: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3358)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4626: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3358)
DIXI-Servers • Дефиниция на км/ч [JavaScript]
Page 1 of 1

Дефиниция на км/ч [JavaScript]

Posted: Sun Jun 14, 2020 10:36 am
by Dixiklo.
Подобие :D

Code: Select all

function speedInfo(speed) {
    speed = Number(speed);

    if(speed <=10) {
        console.log("Пешеходец");
    }
    else if(speed <= 50) {
        console.log("Велосипед")
    }
    else if(speed <= 150) {
        console.log("Опела върви ли мамоууу")
    }
    else if(speed <= 260) {
        console.log("Хондата върви ли мамоуу");
        
    }
    else if(speed > 330) {
        console.log("Туй БМВ ги къса")
    }
}

speedInfo("260");
В speedInfo("parameter"); си сложете параметрите. Тествано е при node.js при Visual Studio Code и работи.