SyntaxFix
Write A Post
Hire A Developer
Questions
function colorOf(r,g,b){ var f = function (x) { return (x<16 ? '0' : '') + x.toString(16) }; return "#" + f(r) + f(g) + f(b); }