Frage im Vorstellungsgespräch bei Quovantis Technologies

2 Write a custom code and reverse string without any pre define function.

Antwort im Vorstellungsgespräch

Anonym

8. Mai 2019

var a ="rahul"; var strlength = a.length; var b=''; for(i=strlength-1;i>=0;i--){ console.log(a[i]); b += a[i]; } console.log(b);