reverse string in a function using a loop javascript code example
Example 1: javascript reverse a string
function reverseString(s){
return s.split("").reverse().join("");
}
reverseString("Hello");//"olleH"
Example 2: reverse the string in javascript
function reverseString(str) {
return str
.split("")
.reverse()
.join("");
}