Last active
September 12, 2018 11:16
-
-
Save manekinekko/de14277f0571a8784e80a2a7f0155b63 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 fonction1() { | |
var a = 1; | |
function fonction2() { /* ... */ } | |
var b = 2; | |
if (a === 1) { | |
var c = 3; | |
} | |
} | |
fonction1(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment