Function Expression

Function Expression

Let sayHi = function() {
  alert( "Hello" );
};

Here, the function is created and assigned to the variable explicitly, like any other value.

Function Expression — Structure map

Clickable & Draggable!

Function Expression — Related pages: