+2 votes
in JavaScript by (793 points)
What is MUL functions?

1 Answer

0 votes
by (793 points)

MUL means simple multiplication of numbers. It is a techique in which you pass a one value as an argument in a function and that function returns another function to which you pass the second value and the process go on. For example: x*y*z can be representing as:

function mul (x) {  
return function (y) { // anonymous function    
return function (z) { // anonymous function      
return x * y * z;    };
  };
}
Click here to read more about JavaScript
Click here to read more about Insurance

Related questions

+1 vote
+1 vote
asked Jul 16, 2019 in JavaScript by Indian (793 points)
+2 votes
asked Jul 16, 2019 in JavaScript by Indian (793 points)
+2 votes
+2 votes
asked Jul 16, 2019 in JavaScript by Indian (793 points)
...