none
const reverseString = str => [...str].reverse().join(''); // reverseString('foobar') -> 'raboof'