function a(){
b();
}
function b(){
a();
}
b();
For further actions, you may consider blocking this person and/or reporting abuse
function a(){
b();
}
function b(){
a();
}
b();
For further actions, you may consider blocking this person and/or reporting abuse
Prasanna Venketesh -
Rifky Alfarez -
Freerain -
Freerain -
Top comments (1)
I think not, cause because in recursion the function call itself again and again.
But in this scenario func b is calling a.So in my opinion it is not a recursive case.