Skip to content

Instantly share code, notes, and snippets.

@charpeni
Created July 14, 2017 02:40
Show Gist options
  • Save charpeni/f6e9936f3f12d8e8f2a2ebe3c413eeba to your computer and use it in GitHub Desktop.
Save charpeni/f6e9936f3f12d8e8f2a2ebe3c413eeba to your computer and use it in GitHub Desktop.
ES8 Trailing commas in function parameter lists
function abc(a, b, c,) {} // <- OK
function abc(
a,
b,
c, // <- OK
) {
// some code
}
abc("","","",); // <- OK
abc(
"",
"",
"", // <- OK
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment