The multiply
function takes two variables as parameters and returns the product of the two numbers.
multiply(x, y)
- x: The first number to be multiplied.
- y: The second number to be multiplied.
multiply(2, 3) => 6
multiply(5, 5) => 25
multiply(10, 10) => 100