Skip to content

Instantly share code, notes, and snippets.

@ma-9
Created November 1, 2019 18:25
Show Gist options
  • Save ma-9/cb567d8285de218271415747897a8f63 to your computer and use it in GitHub Desktop.
Save ma-9/cb567d8285de218271415747897a8f63 to your computer and use it in GitHub Desktop.
JavaScript ES8 Features
// Trailing Commas
const Students = {
first: '1',
second: '2',
third: '3',
}
const Student = [1,,2,,3,,,];
console.log(Student.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment