Create functions for the Calculator class that can do the following:
var calculator = new Calculator()
calculator.add(10, 5) ➞ 15
calculator.subtract(10, 5) ➞ 5
calculator.multiply(10, 5) ➞ 50
calculator.divide(10, 5) ➞ 2
The functions should return the result of the calculation.