Skip to content

Instantly share code, notes, and snippets.

@gitexec
gitexec / jsbasicclass.txt
Created June 8, 2017 23:29
Class definition with methods
class Fraction{
constructor(top, bottom){
this.num = top;
this.den = bottom;
}
show() {
console.log('${this.num}/${this.den}');
}