SLB interview question

Reverse a string using recursion.

Interview Answer

Anonymous

5 Jun 2018

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

1