Complete the solution so that it reverses the string passed into it.
'world' => 'dlrow'
function solution(str){
let revStr = "";
for (let i = 0; i < str.length; i++) {
revStr += str[str.length - 1 - i]
}
return revStr;
}
메소드를 이렇게 붙여서 바로 리턴하는 게 가능하다.
function solution(str){
return str.split('').reverse().join('');
}