Files

6 lines
124 B
JavaScript
Raw Permalink Normal View History

2022-02-20 14:07:44 -05:00
const reverseString = function (string) {
2023-01-21 12:53:41 -05:00
return string.split("").reverse().join("");
2022-02-20 14:07:44 -05:00
};
module.exports = reverseString;