Created
January 15, 2019 07:36
-
-
Save AshutoshSajan/07b0fa7eaf5d6e2549108eae21b4c88b to your computer and use it in GitHub Desktop.
comma operator
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
var a = 1, b = 3 ,c = 4 , d = 5; | |
var a = 1, | |
b = 3, | |
c = 5; | |
var a = 1 | |
,b = 3 | |
,c = 5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment