/**
* @param {string} s
* @return {string}
*/
var reverseWords = function(s) {s
return s.trim().split(" ").filter((i) => i!="").reverse().join(" ")
};
For further actions, you may consider blocking this person and/or reporting abuse
/**
* @param {string} s
* @return {string}
*/
var reverseWords = function(s) {s
return s.trim().split(" ").filter((i) => i!="").reverse().join(" ")
};
For further actions, you may consider blocking this person and/or reporting abuse
Mạnh Vũ -
crysomemore123 -
Mehedi Hasan -
Horacio Degiorgi -
Top comments (0)