Skip to content

Instantly share code, notes, and snippets.

@szaranger
Last active August 8, 2022 03:42
Show Gist options
  • Save szaranger/b4b269f320576652ae70afbfab1a2095 to your computer and use it in GitHub Desktop.
Save szaranger/b4b269f320576652ae70afbfab1a2095 to your computer and use it in GitHub Desktop.
function Person(name, dob) {
this.name = name;
this.dob = dob;
}
const sherlock = new Person({
name: 'Sherlock Holmes',
dob: '01-06-1852';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment