I've been having trouble with function expression and anonymous function.
let sayHi = function() {
alert( "Hello" );
}; //This is function expression
var anon = function() {
alert('I am anonymous');
}
anon(); //This is anonymous function
I don't see the difference between those two. From i see, they look the same to me. Can anyone please give me a better explanation of it so i can understand it. I appreciate it. Thank you