exercism/javascript/example/example.js

10 lines
129 B
JavaScript
Raw Normal View History

2016-08-23 17:33:06 +00:00
var Example = function () {
'use strict';
this.add = function (x, y) {
return x + y;
};
};
module.exports = Example;