Last active
January 18, 2018 10:27
-
-
Save DmitryMasley/4f799869364c9fe6d5e26e44179d11f3 to your computer and use it in GitHub Desktop.
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
function f () { | |
a = 1; | |
b = 2; | |
c = 3; | |
d = 4; | |
var a; | |
let b; | |
const c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment