How to use function expression (define a function inside an expression) in JavaScript

2 Answers

0 votes
const f = function(a, b) {
  return a * b;
};

console.log(f(6, 18));




/*
run:

108

*/

 



answered Nov 14, 2020 by avibootz
0 votes
const f = function() {
  console.log('f');
};

console.log(f());




/*
run:

"f"

*/

 



answered Nov 14, 2020 by avibootz
...