jashkenas--coffeescript/documentation/coffee/slices.coffee

7 lines
106 B
CoffeeScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
2009-12-26 00:35:57 +00:00
2010-07-29 04:51:35 +00:00
threeToSix = numbers[3..6]
2009-12-26 00:35:57 +00:00
2010-07-29 04:51:35 +00:00
copy = numbers[0...numbers.length]
2009-12-26 00:35:57 +00:00