将一个字符串进行翻转操作,返回翻转后的字符串
const reverse = str => str.split('').reverse().join(''); reverse('hello world'); // 'dlrow olleh'