UNPKG

@myzendapnew/just_calculator2

Version:

Simple calculator with sub and div functionality

8 lines 182 B
module.exports.Calculator = function(){ this.sub = function(no1, no2){ return no1 - no2; } this.div = function(no1, no2){ return no1 / no2; } }