complexity: 5 ; importance: 4; author: docentmail


Hoisting behavior

Problem 2016-01-17-04-15

Question: What would be result of execution of the snippet?

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

    var myFunction = function() {
        alert("hello from local myFunction");  
    };
}
testFunctionHoisting();