complexity: 2 ; importance: 8; author: docentmail


Hoisting behavior

Problem 2016-01-17-04-41

Question: Is this valid to call function before it is declared?

myFunction();
function myFunction(){
   alert("Hello from myFunction ");
}

Read it for details:
webculum's tutorial: Hoisting behavior