SLB interview question

Reverse a string using recursion.

Interview Answer

Anonymous

Jun 5, 2018

function abc(str) { if(str){ print reverse(str+1); } }

1