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

1 Answer

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

 
/*
run:
 
n = : 435
n = : 32
n = : 5
n = : 9
n = : 7
 
*/

 



answered Dec 18, 2021 by avibootz
...