
How to pass array as arguments to function in javascript
How to pass array as arguments to function in javascript
We’ll attempt to use programming in this lesson to solve the "How to pass array as arguments to function in javascript" puzzle.
You can pass array as arguments to function in javascript. You have to use the spread operator in javascript which pass the array elements as arguments to function. The number of arguments of function and array elements should be same.-
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.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
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.
Random Code Snippet Queries: Javascript
- Uncaught TypeError: Cannot read property 'addEventListener' of undefined
- Javascript get only 10 characters from string
- Deault order of record in datatable
- How to check file is an image in javascript using filename
- Short-circuits conditionals
- Concat variable with string in javascript
- How to show and hide placeholder text
- Copy one array to another in javascript
- How to use JavaScript to search for items in a list
- How to preview video before uploading in javascript
- Get hostname from URL in javascript
- How to add key/value pair to existing form data
- Multidimensional array example javascript
- How to remove duplicate values from array in javascript
- How to get the length of a number in JavaScript
- How to validate empty space in textbox in Javascript
- Remove hostname from URL in javascript
- How to validate input type file size in javascript
- How to get file extension using javascript/jquery
- Javascript set timeout function with example code
- Cropper js with multiple images
- How to set href value of anchor tag in javascript
- Javascript to print Fibonacci series upto 15 Observations
- How to check caps lock is on in javascript
- On click enter redirect to another URL with parameters in javascript