Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lelinhtinh/0dcba315451cc4206a8b to your computer and use it in GitHub Desktop.
Save lelinhtinh/0dcba315451cc4206a8b to your computer and use it in GitHub Desktop.
Tạo mã màu Hex ngẫu nhiên trong javascript
// http://www.paulirish.com/2009/random-hex-color-code-snippets/
(function(m, s, c) {
return (c ? arguments.callee(m, s, c - 1) : '#') + s[m.floor(m.random() * s.length)]
})(Math, '0123456789ABCDEF', 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment