From ddfa270f90f9aa55905f5ab5202861ebb46c5537 Mon Sep 17 00:00:00 2001 From: David Wu Date: Sun, 24 Dec 2017 14:23:45 +0100 Subject: [PATCH] Update randomHexColorCode.md --- snippets/randomHexColorCode.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/snippets/randomHexColorCode.md b/snippets/randomHexColorCode.md index 7d1b26d71..f77524ba7 100644 --- a/snippets/randomHexColorCode.md +++ b/snippets/randomHexColorCode.md @@ -10,8 +10,7 @@ const randomHexColorCode = () => { while(color.length < 7) color += '0123456789ABCDEF'[Math.floor(Math.random() * 16)]; return color; } - // randomHexColorCode() -> "#e34155" // randomHexColorCode() -> "#fd73a6" // randomHexColorCode() -> "#4144c6" -``` \ No newline at end of file +```