-
-
Save reime005/0eae30c810bc09dc3cc0a9d79732d4b0 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
let test = 1; | |
console.log(test); // prints '1' | |
test = 'test'; | |
console.log(test); // prints 'test' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment