/class

Primary LanguageJavaScript

usage

  • ./node_modules/.bin/mocha verify -R spec -g 'Implement Class Constructor'
  • ./node_modules/.bin/mocha verify -R spec -g 'Implement Instance Methods'

hint

var Hehe = function () {this.a = 1};
var hehe = new Hehe();
console.log(hehe.a)

this is all about it