Skip to content

Instantly share code, notes, and snippets.

@svoboda-jan
Created October 27, 2024 13:03
Show Gist options
  • Save svoboda-jan/9c2333ee0fa4e6b53674257a7b570c70 to your computer and use it in GitHub Desktop.
Save svoboda-jan/9c2333ee0fa4e6b53674257a7b570c70 to your computer and use it in GitHub Desktop.
Print command for JavaScript
<script>
// Creates a Print function as an alias for console.log
// Usage Print("Hello World");
function Print(v) { console.log(v); return v };
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment