u16suzuの blog

日々学んだことのメモブログです。

Ruby のArrayの要素を入れたり取り出したりするメソッドについて

This is memorandum about Ruby's Array class' instance methods.
Take some notes for my understand. I still haven' store them.

Manipulate to tail
push: add to tail
pop: remove from tail


Manipulate to head
unshift: add to head
shift: remove from head

<