ds-algo-study
Version:
Just experimenting with publishing a package
26 lines (19 loc) • 776 B
JavaScript
/******************************************************************************
Write a function reverseString(string) that takes in a hyphenated string and
returns a the hyphenated string reversed.
Examples:
reverseString("Go-to-the-store") => "store-the-to-Go"
reverseString("Jump,-jump-for-joy") => "joy-for-jump-Jump,"
*******************************************************************************/
function reverseString(string) {
let words = string.split("-");
let reversed = [];
for (let i = words.length - 1; i >= 0; i--) {
let word = words[i];
reversed.push(word);
}
let reversedStr = reversed.join("-");
return reversedStr;
}
/**************DO NOT MODIFY ANYTHING UNDER THIS LINE*************************/
module.exports = reverseString;