We're a place where coders share, stay up-to-date and grow their careers.
Why not use all array methods?
const reverseStr = str => str.split('').reverse().join('');
Why not use all array methods?