Skip to content

Instantly share code, notes, and snippets.

@digitalconceptvisuals
Created July 29, 2020 15:26
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 digitalconceptvisuals/20b4d968713b9f12eddc11a826a5704b to your computer and use it in GitHub Desktop.
Save digitalconceptvisuals/20b4d968713b9f12eddc11a826a5704b to your computer and use it in GitHub Desktop.
function Person(id, name) {
this.id = id;
this.name = name;
}
let eich = Person(1, "Brendan");
console.log(global.id, global.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment