Skip to content

Instantly share code, notes, and snippets.

@jwulf
Last active February 26, 2020 01:39
Show Gist options
  • Save jwulf/08f1346f4138c81c00f2e9254f3d68b4 to your computer and use it in GitHub Desktop.
Save jwulf/08f1346f4138c81c00f2e9254f3d68b4 to your computer and use it in GitHub Desktop.
//global variable
const GlobalMembersArray = [];
//object
function Member(id, password) {
this.id = id;
this.password = password
}
const member1 = new Member("m001","123");
GlobalMembersArray.push(member1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment