Created
January 22, 2020 22:33
-
-
Save ssbozy/d88f66bb2cf0d9adc99b8d2437dd7a3e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getRandomColor() { | |
return { | |
r: Math.floor(Math.random() *255), | |
g: Math.floor(Math.random() *255), | |
b: Math.floor(Math.random() *255) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment