Skip to content

Instantly share code, notes, and snippets.

@arthu
Forked from codediodeio/print.js
Created July 8, 2021 15:36
Show Gist options
  • Save arthu/94cb19378728bf9f8a580911b249bfcf to your computer and use it in GitHub Desktop.
Save arthu/94cb19378728bf9f8a580911b249bfcf to your computer and use it in GitHub Desktop.
print
export const print = (v) => {
const el = document.createElement('h3');
el.innerText = '🔵 ' + v;
document.body.appendChild(el);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment