Skip to content

Instantly share code, notes, and snippets.

@AshutoshSajan
Created January 15, 2019 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshutoshSajan/07b0fa7eaf5d6e2549108eae21b4c88b to your computer and use it in GitHub Desktop.
Save AshutoshSajan/07b0fa7eaf5d6e2549108eae21b4c88b to your computer and use it in GitHub Desktop.
comma operator
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