<html>
<head>
<title>A Will Be Calling B</title>
<script>
var x = "";
var y = "Inside B";
var z = "";
a();
function a(){
x = "Inside A";
z = b();
}
function b(){
return y;
}
</script>
</head>
<body>
<h3>Call Me Call You</h3>
<script>
document.write( "<br>x: " + x );
document.write( "<br>y: " + y );
document.write( "<br>z: " + z );
</script>
</body>
</html>