JSFiddle - React, Tailwind, and code Playground

by Miklos Nagy

JavaScript

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

console.log(rs("This is text"));