custom console.log
by Daehyun Im
HTML
Custom Log
JavaScript
// How to hide source of Log messages in Console?
// http://stackoverflow.com/questions/34762774/how-to-hide-source-of-log-messages-in-console
// Colors in JavaScript console
// http://stackoverflow.com/questions/7505623/colors-in-javascript-console
// why %c?
// https://github.com/DeveloperToolsWG/console-object/blob/master/api.md#format-specifiers
// %c Formats the output string according to CSS styles you provide
console.log(
'%cR%cG%cB %cPLACE',
'color: #ff6b6b;font-size:2rem;font-weight:bold',
'color: #51cf66;font-size:2rem;font-weight:bold',
'color: #339af0;font-size:2rem;font-weight:bold',
'color: #000000;font-size:2rem;font-weight:bold'
);