Skip to content

Instantly share code, notes, and snippets.

@selfup
Created November 26, 2017 20:00
Show Gist options
  • Save selfup/45b9b49154720df51f72769753fdd4cb to your computer and use it in GitHub Desktop.
Save selfup/45b9b49154720df51f72769753fdd4cb to your computer and use it in GitHub Desktop.
function Demo() {
this.x = 42;
}
Demo.prototype = {
logX: function() {
console.log(this.x);
},
};
var demo = new Demo();
demo.logX();
//////////////////////////
class Demo2 {
constructor() {
this.x = 42;
}
logX() {
console.log(this.x);
}
}
const demo2 = new Demo2();
demo2.logX();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment