Log konsol JS dengan warna
console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
If-dev
console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
console.log("%cThis is a %cConsole.log", "background:black ; color: white", "color: red; font-size:25px");
const str = 'text';
console.log ( '%c%s', 'color: green; font: 1.2rem/1 Tahoma;', str );
var colors = require('colors');
console.log('This is rainbow'.rainbow);
console.log('This is zebra'.zebra);
console.log('This is america'.america);
console.log('This is trap'.trap);
console.log('This is random'.random);
console.log('This is random2'.random);
console.log('This is random3'.random);
console.log("%cThis will be formatted with large, blue text", "color: blue; font-size: x-large");