How to create anonymous function and pass it as an argument to another function in JavaScript

1 Answer

0 votes
[435, 32, 5, 9].forEach(function(n) {
    console.log("n = : " + n);
});




/*
run:

n = : 435
n = : 32
n = : 5
n = : 9

*/

 



answered Oct 11, 2020 by avibootz
edited Dec 18, 2021 by avibootz
...