0
Function calling other functions.
Plz explain about this easy.
1 Resposta
+ 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