Function To Reverse A String In JavaScript

function reverse(text) {
  return text.split('').reverse().join('');
}

console.log(reverse('something')); // gnihtemos
console.log(reverse('abcdefg')); // gfedcba
console.log(reverse('hash bang code')); // edoc gnab hsah

 

Add new comment

The content of this field is kept private and will not be shown publicly.