Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 252 Bytes

File metadata and controls

9 lines (6 loc) · 252 Bytes

Screen Shot 2022-04-13 at 15 25 24

function solution(str){
  return str.split('').reverse().join('');  
}