Skip to content

Instantly share code, notes, and snippets.

@kimschles
Created December 29, 2018 22:14
Show Gist options
  • Select an option

  • Save kimschles/a3e288e8e0a50a468fd7a41d725a1da8 to your computer and use it in GitHub Desktop.

Select an option

Save kimschles/a3e288e8e0a50a468fd7a41d725a1da8 to your computer and use it in GitHub Desktop.
Example of JS constructor
const isLeap = (year) => {
class Year {
constructor() {
this.year = year
}
}
let now = new Year();
return now.year
};
console.log(isLeap(2018));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment