How JavaScript code actually executed?
Let me explain when we run the javascript code then what happen behind the scene?
By taking the an easy example let understand
var n=2;
function cube(n){
var ans=n*n*n;
return ans;
}
var cube2=cube(n);
var cube3=cube(2);
when we hit the run button t...
hackthic.in1 min read