Notes for You:: How to call function inside another function - JavaScript Tutorial 65
- If required we can call one function inside another function.
Example Code 1:
function h()
{
document.write("h","<br/>");
}
function g()
{
document.write("g","<br/>");
h();
}
function f()
{
document.write("f","<br/>");
g();
}
f();
Note:
- replace < with less-than symbol.
- replace > with greater-than symbol.
Output:
f
g
h
Example Code 2:
- Find Distance between 2 points in JavaScript
function square(x)
{
return x * x;
}
function distance(x1,y1,x2,y2)
{
return Math.sqrt(square(x2 - x1) + square(y2-y1));
}
var result = distance(0,0,4,3);
document.write(result);
Output:
5
=========================================
Follow the link for next video:
JavaScript Tutorial 66 - Find factorial of a number using for loop in JavaScript
• Find Factorial using JavaScript for l...
Follow the link for previous video:
JavaScript Tutorial 64 - Functions Vs. Call Stack in JavaScript
• JavaScript Functions and the Call Sta...
=========================================
JavaScript Tutorials Playlist:-
• JavaScript Tutorials
=========================================
Watch My Other Useful Tutorials:-
jQuery Tutorials Playlist:-
• jQuery Tutorials
jQuery UI Tutorials Playlist:-
• jQuery UI Tutorials
Bootstrap Tutorials Playlist:-
• Bootstrap4 Tutorials
=========================================
► Subscribe to our YouTube channel:
/ chidrestechtutorials
► Visit our Website:
https://www.chidrestechtutorials.com
=========================================
Hash Tags:-
#ChidresTechTutorials #JavaScript #JavaScriptTutorial