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
Godly K Mathews -
ANIRUDDHA -
T.H. Jacobs -
A0mineTV -
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.