Is it possible to call another function variable?
Below is my Script:
f2();
function f1() {
var v2 = 1;
}
function f2(v2) {
var v3= 2;
alert(v2);
}
Is it possible to call another function variable?
Below is my Script:
f2();
function f1() {
var v2 = 1;
}
function f2(v2) {
var v3= 2;
alert(v2);
}