UNPKG

@myzendapnew/just_calculator1

Version:

Simple calculator with add and mult functionality

8 lines 183 B
module.exports.Calculator = function(){ this.add = function(no1, no2){ return no1 + no2; } this.mult = function(no1, no2){ return no1 * no2; } }