Function calling other functions. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Function calling other functions.

Plz explain about this easy.

19th Dec 2021, 3:43 AM
Pravin N
Pravin N - avatar
1 Answer
+ 2
function a(){ // do something } function b(){ // do something a() } b() When function b() is called then the code in function b executes normally and if you call any function inside it then it will run the code of that perticular function. That's all
19th Dec 2021, 4:06 AM
Ayush Kumar
Ayush Kumar - avatar