settingsAccountsettings
By using our mini forum, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy
Menusettings

Q: Can you please give an example of lambda function in JavaScript?

+3 votes
I am still strugling to understand the lambda functions in JavaScript (() =>). Can you please give an example (or some examples) of lambda function used in JavaScript?
asked in JavaScript category by user andrew

1 Answer

+2 votes

This vide explains nicely:

https://www.youtube.com/watch?v=J85lRtO_yjY

and his code (on the 2nd line is the lambda function):

let x = function(a,b,c){return a+b+c;};
let x = (a,b,c) => a+b+c;
alert(x(2,5,1));

and:

setTimeout(function () {alert("2 seconds passed")}, 2000);
setTimeout(() => alert("2.3 seconds passed"), 2000);

you clearly see by comparison with the regular anonymous function and the lambda one that the last one is more convenient and less code is required :-)

answered by user eiorgert
edited by user golearnweb
...