shiftメソッドを使用し、配列の先頭の要素を削除することができます。

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

alert(youbi);

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