employer cover photo
employer logo
employer logo

Quovantis Technologies

Is this your company?

Quovantis Technologies interview question

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

Interview Answer

Anonymous

May 8, 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);