Skip to content

Instantly share code, notes, and snippets.

View digitalconceptvisuals's full-sized avatar

digitalconceptvisuals

View GitHub Profile
// Constructor function
// Not to be used as normal function
function Person(id, name) {
// Was this called using new?
if (this == globalThis)
throw "Error: use 'new Person()'";
this.id = id;
this.name = name;