So, all you need is a horizontal mirror. I suppose your array contains an array for each row, so that means that you just need to undo all rows.
for(var i=0;i<multiarr.length;i++){ multiarr[i].reverse(); }
or even better
multiarr.map(function(arr){return arr.reverse();});
source share