Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Created September 15, 2014 10:30
Show Gist options
  • Save lelinhtinh/79a8dab6b175d9bca03e to your computer and use it in GitHub Desktop.
Save lelinhtinh/79a8dab6b175d9bca03e to your computer and use it in GitHub Desktop.
Tô màu cho nội dung console.log
// http://stackoverflow.com/a/10769621
function colorTrace(msg, color) {
console.log("%c" + msg, "color:" + color + ";font-weight:bold;");
}
colorTrace("Test Me", "red");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment