const reverseStr = (str)=>{ if(!str || 2 > str.length) { return str } return str.split('').reverse().join('') } console.log(reverseStr('football'));