Reverse String
const word ="Rever_1_Test_2";
let reverseString = str => str.split('_').reverse().join('_');
console.log(reverseString(word));INFO
const word ="Rever_1_Test_2";
let reverseString = str => str.split('_').reverse().join('_');
console.log(reverseString(word));