Javascript IIFE Functions
IIFE stands for immediately invoked function expression
These functions are used to define variables ,functions with lo...
For further actions, you may consider blocking this person and/or reporting abuse
(function (a,b){
function sum() {
let a,b;
return (a+b);
}
})(5,6);
You missed ")"