Skip to content

Instantly share code, notes, and snippets.

@rahulspace
Created September 19, 2022 08:41
Show Gist options
  • Save rahulspace/2775cb59a3693aef0dad4e266dac486a to your computer and use it in GitHub Desktop.
Save rahulspace/2775cb59a3693aef0dad4e266dac486a to your computer and use it in GitHub Desktop.
Random Color Generator JavaScript
export default {
generate() {
var letters = "BCDEF";
var color = "#";
for (var i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * letters.length)];
}
return color;
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment