Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<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>
var x = "";
var y = "Inside B";
var z = "";
var u = new c();
x = u.x_like;
z = u.b_work();
function b(){
return y;
}
function c(){
this.b_work = b;
this.x_like = "Inside C";
}