Функция генерирующая случайное HEX-число (JavaScript)
function get_random_hex_value() { return '#' + Math.floor(Math.random() * 16777215).toString(16); } |
P.S.: This function generates a random hexadecimal value ;)
make love not war
function get_random_hex_value() { return '#' + Math.floor(Math.random() * 16777215).toString(16); } |
P.S.: This function generates a random hexadecimal value ;)