Skip to content

151-reverse-words-in-a-string

DevGod
DevGod
Vtuber
/**
* @param {string} s
* @return {string}
*/
var reverseWords = function(s) {
return _.reverse(s.trim().replaceAll(/\s+/g," ").split(" ")).join(" ");
};