Answers for "write a function named "multiply" which takes two arguments (as input variables) and returns their product."

1

multiply function javascript

// MULTIPLY FUNCTION
const multiply = (num1, num2) => {
  return num1 * num2;
};
let resulMultiply = multiply(4, 5);
console.log(resulMultiply);
// 20
Posted by: Guest on June-09-2020

Code answers related to "write a function named "multiply" which takes two arguments (as input variables) and returns their product."

Code answers related to "Javascript"

Browse Popular Code Answers by Language