Created
March 20, 2018 08:20
-
-
Save ioslh/dab571f2012a79e9516c2b6ab84ba0f7 to your computer and use it in GitHub Desktop.
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
window.Lib = function(){ | |
var h1 = document.createElement('h1') | |
h1.textContent = 'Hello World' | |
document.body.appendChild(h1) | |
} | |
window.Lib() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment