Skip to content

Instantly share code, notes, and snippets.

@olddustysocksunderthecouch
Last active May 6, 2018 16:54
Show Gist options
  • Save olddustysocksunderthecouch/96492a0dad563b88d5faa4ad9503f2f1 to your computer and use it in GitHub Desktop.
Save olddustysocksunderthecouch/96492a0dad563b88d5faa4ad9503f2f1 to your computer and use it in GitHub Desktop.
class Person {
constructor () {
this.name = ‘Douglas Adams’;
}
}
const person = new Person();
console.log(person.name); //logs: ‘Douglas Adams’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment