From: Alin Popa Date: 2007-06-12T19:55:31+09:00 Subject: Re: add element at end of array Daniel Liebig wrote: > Hi there, > > i'm pretty new to Ruby. I searched 'Programming Ruby' and the online > documentation but couldn't find a solution. So please forgive me my > simple question ;). > > I just want to add a new value / object to an existing array. Right now > i'm using > > a[a.length] = 'foo' > > but i'm almost sure Ruby has a better way to do that!? > > Thx for any help > D. Hi Daniel, Yes, there is an easier way to do that: a = [1,2,3] a.push(4) Best regards, Alin -- Posted via http://www.ruby-forum.com/.