Created
October 27, 2024 13:03
-
-
Save svoboda-jan/9c2333ee0fa4e6b53674257a7b570c70 to your computer and use it in GitHub Desktop.
Print command for JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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