-
-
Save jonelf/853989638d4fb9fd4e5adbb55efc8d61 to your computer and use it in GitHub Desktop.
x's in 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
var p = (xᅠ, x, ᅠx) => console.log(xᅠ + ", " + x + ", " + ᅠx) | |
var xᅠ = 37; | |
p(xᅠ, x, ᅠx); | |
var x = 41; | |
p(xᅠ, x, ᅠx); | |
var ᅠx = 43; | |
p(xᅠ, x, ᅠx); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
37, undefined, undefined
37, 41, undefined
37, 41, 43