Types of Functions

suggest change

Named functions

function multiply(a, b) {
    return a * b;
}

Anonymous functions

let multiply = function(a, b) { return a * b; };

Lambda / arrow functions

let multiply = (a, b) => { return a * b; };

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents