You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var Calculator = require('./calculator');
var calculator = new Calculator();
var result = calculator.calculate('5 * 6');
if (result instanceof Error) {
console.error('calculation error:', result);
}
console.log(result);