slice with two parameters : slice « Array « Ruby






slice with two parameters


year = [2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009]

p year.slice(0,4) # => [2000, 2001, 2002, 2003]

 








Related examples in the same category

1.slice with one parameters
2.slcie with range parameter
3.slice with exclusive range parameter