@singuerinc


2014-01-01 by Nahuel Scotti | 1 min read

Random Color

  • #colors
  • #javascript
  • #random

Para empezar algo de Javascript simple: random hex color.

var color = '#'+Math.floor(Math.random()*16777215).toString(16);
console.log(color);
Demo