Skip to content

Instantly share code, notes, and snippets.

@webmaster128
Created June 17, 2020 12:31
Show Gist options
  • Select an option

  • Save webmaster128/05a3f08c3af7242304d362406de6f943 to your computer and use it in GitHub Desktop.

Select an option

Save webmaster128/05a3f08c3af7242304d362406de6f943 to your computer and use it in GitHub Desktop.
// 1 item
let user = new Person("Susi");
// 2 items
let userA = new Person("Susi");
let userB = new Person("Marc");
// 3 items
let users = [
new Person("Susi"),
new Person("Marc"),
new Person("Chris"),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment