DEV Community

Discussion on: Method chaining in javascript

Collapse
 
aramay profile image
Abid Ramay • Edited

small typo, Arithmetic1.subtract(3) should be Arithmetic1.subtraction(3). There's no class method subtract().

Collapse
 
isiakaabd profile image
ISIAKA ABDULAHI AKINKUNMI

Thanks, that's true

Collapse
 
inafk profile image
Ina

It will be nice to append add() method too and fix small typo:
const Arithmetic 1= new Arithmetic() into const Arithmetic1 = new Arithmetic()
Thanks!