reverseメソッドを使用すると配列の要素の並び順を逆にすることができます。

youbi = new Array( "日", "月", "火", "水", "木", "金", "土" );
youbi.reverse();

alert(youbi);

◆実行結果
土,金,木,水,火,月,日