first();
function first(){
second();
third();
}
function second(){
var b='second';
}
function third(){
console.log(b);
}
Getting error while trying to access variable b in third(), can you please help console.log(b); ^
ReferenceError: b is not defined