Answers for "js console.log format text color"

23

js console log with color

console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
Posted by: Guest on April-09-2020
0

javascript colorized console.log

console.log(
  'Nothing here %cHi Cat %cHey Bear', // Console Message
  'color: blue',
  'color: red', // CSS Style
);
Posted by: Guest on April-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language