Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const _ = require('lodash');
  2. const Calculator = require('./Calculator.js')
  3.  
  4. const item1 = new Calculator([1,2,3,4,5]);
  5. const item2 = new Calculator([1,'text',2,3,{}]);
  6. //item1.sum();
  7. //item1.substract();
  8. //item1.multiply();
  9. item2.substract();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement