Untitled
user_7147158
plain_text
a year ago
301 B
9
Indexable
var a = 10;
function hello(){
let aa ="aa";
console.log("helo func")
function a11(){
console.log("a11 func")
function a22(){
console.log("a22 func")
console.log(a);
}
a22();
}
a11();
console.log(aa)
}
hello()Editor is loading...
Leave a Comment