What is a reverse string?



What is a reverse string?..

Answer / Shreyansh Nath

A reverse string means the sequence of characters in a given string, where the first character becomes the last and the last character becomes the first. This can be achieved using various methods in JavaScript, such as the built-in `reverse()` method or by manually iterating over the string.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JavaScript Interview Questions

How to load another html page from javascript?

1 Answers  


how can i change colour of a image in aspx file?

1 Answers  


how many feet does a centipeed have?

0 Answers  


How to convert javascript date to iso standard?

1 Answers  


How to associate functions with objects using javascript?

1 Answers  


What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }

1 Answers  


Explain the difference between call() and apply()?

1 Answers  


What is Browser Object Model?

1 Answers  


What is use strict in javascript?

1 Answers  


Is javascript necessary?

1 Answers  


Is javascript a programming language?

1 Answers  


How to test 404 page in QA

1 Answers  


Categories