Answers for "how to generate random colors in js"

27

js random hex color

'#'+Math.floor(Math.random()*16777215).toString(16);
Posted by: Guest on February-25-2020
0

function to generate random color in javascript

function random(number){
    return Math.floor(Math.random()*number);;
}
function randomColor(){
 return 'rgb('+random(255)+','+random(255)+','+random(255)+')';    
}
Posted by: Guest on August-24-2021

Code answers related to "how to generate random colors in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language