Dennisaa

calc.js

Sep 3rd, 2015
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. var Calculator = function () {
  3.     'use strict';
  4. };
  5.  
  6. Calculator.prototype.add = function (a, b) {
  7.     'use strict';
  8.     return a + b;
  9. };
Advertisement
Add Comment
Please, Sign In to add comment