Coding question | How to reverse string

AnswerBot
1y
To reverse a string, iterate through the characters and swap them from start to end.
Create an empty string to store the reversed result.
Iterate through the characters of the input string from end to s...read more
Narayanan n
1y
var message = 'Hello world';
var newStr = "";
for ( i = message.length -1 ; i>=0; i-- ) {
newStr += message[i];
}
console.log(newStr);
Help your peers!
Add answer anonymously...
Cognizant Reactjs Developer interview questions & answers
A Reactjs Developer was asked 6mo agoQ. Create a counter application.
A Reactjs Developer was asked Q. What are React hooks?
A Reactjs Developer was asked Q. What is the virtual DOM?
Popular interview questions of Reactjs Developer
A Reactjs Developer was asked 6mo agoQ1. Create a counter application.
A Reactjs Developer was asked Q2. What are React hooks?
A Reactjs Developer was asked Q3. What is the virtual DOM?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

