odin-js-fundamentals-part-4/03_reverseString/reverseString.js

11 lines
256 B
JavaScript
Raw Permalink Normal View History

2024-01-05 19:51:18 +00:00
const reverseString = function(string) {
let output = "";
for (let i = 0; i < string.length; i++) {
output += string.charAt(string.length - i - 1);
}
return output;
};
// Do not edit below this line
module.exports = reverseString;