var reverseString = function(arr) {
if (arr.length === 1) {
return arr;
}
const temp = arr.shift();
reverseString(arr);
arr.push(temp);
return arr;
};
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)