“Log konsol JS dengan warna” Kode Jawaban

Log konsol JS dengan warna

console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
If-dev

JS Console.log Color

console.log('%c My txt ', 'My css');

// Example
console.log('%c Hello world ', 'background: #222; color: #bada55');
Attractive Ape

cara mengubah warna konsol.log di javascript

// Download the npm package "colors"
// npm i colors

var colors = require("colors");

console.log("Hello World".blue);

// output: Hello World (Its blue btw lmao)
Elegant Echidna

JavaScript Console Console.log

console.log(
  'Nothing here %cHi Cat %cHey Bear', // Console Message
  'color: blue',
  'color: red', // CSS Style
);
Pudochu

naskah bagaimana mewarnai logger konsol Anda

//has to be backtick comma to interpolate.
public colorLogger(str: any, color = "red"){
    console.log(`%c ${str}`, `color: ${color}; font-weight: bold;`);
}
Juice WRLD

Jawaban yang mirip dengan “Log konsol JS dengan warna”

Pertanyaan yang mirip dengan “Log konsol JS dengan warna”

Lebih banyak jawaban terkait untuk “Log konsol JS dengan warna” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya