Answers for "javascript 1 parameters function es6"

6

javascript multiply arguments

const mul = (...args) => args.reduce((a, b) => a * b);

// Example
mul(1, 2, 3, 4);    // 24
Posted by: Guest on July-03-2020
1

js unspecified parameters

function my_log(...args) {
     // args is an Array
     console.log(args);
     // You can pass this array as parameters to another function
     console.log(...args);
}
Posted by: Guest on October-24-2020

Code answers related to "javascript 1 parameters function es6"

Code answers related to "Javascript"

Browse Popular Code Answers by Language