Tuesday, July 5, 2016
Subscribe to:
Post Comments
(
Atom
)
Just Compiled...
Java script hoisting Interview question
var a = "global Variable";
function dotnetpiper() {
console.log(a);
var a = "local Variable";
function z() {
var a = "Inner local Variable";
console.log(a);
}
z();
console.log(a);
}
dotnetpiper();
Answer:
:
Secure Azure Infrastructure Practices I n Year 2020 cloud computing outcomes show that enterprises continue to embrace multi-cloud (Az...