Created
February 16, 2022 19:05
-
-
Save compwron/6bf41e5605df432c00869eb6bd6d2211 to your computer and use it in GitHub Desktop.
skillz for tiny taste
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
1 + 1 | |
console.log("hello") | |
myFunctionName = () => {console.log("hi")} | |
myFunctionName() | |
myFunctionName2 = (x) { return x + 1 } | |
myFunctionName2(100) | |
document.body.style.backgroundColor = "red" | |
window.location.href |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment