Get multiplication in javascript using array input

Created at 28-Sep-2021 , By samar

Get multiplication in javascript using array input

In this session, we are going to try to solve the "Get multiplication in javascript using array input" puzzle by using the computer language.

There are lots of method available in javascript to get the multiplication. But here we have to pass the array value as arguments to call the function. In that case we can use spread operator in javascript
  • Pass array as arguments to multiply function using spread operator

    <script> 
    function multiply(number1, number2, number3) {
      console.log(number1 * number2 * number3);
    }
    let numbers = [1,2,3];
    multiply(...numbers);
    </script>
    

    Output:

    6

    This code snippet retuns the multiplication of the input parameters which is passed as array to function using spread operator. You have to pass the number of array elements which is equal to the number of parameters listed in the function definition.

Back to code snippet queries related javascript

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.