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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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("")));