Hello World!
Last active
September 25, 2017 14:02
-
-
Save mabel/66e605a8825b9e680528c2a2739a7f4a to your computer and use it in GitHub Desktop.
Переменные в JavaScript
This file contains hidden or 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
const test = {a: 1, b: 2} | |
var test = 1234 | |
for(let i = 0; i < 10; i++){ | |
console.log(i) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment