javascript reverse each string element in array

Solutions on MaxInterview for javascript reverse each string element in array by the best coders in the world

showing results for - "javascript reverse each string element in array"
Lyna
11 Feb 2020
1let noArray_leftOdd = ['0001101', '0011001', '0010011', '0111101'];
2
3console.log(noArray_leftOdd.map(e => e.split("").reverse().join("")));