Skip to content

Instantly share code, notes, and snippets.

@slloyd
Created February 14, 2014 18:38
Show Gist options
  • Save slloyd/9006479 to your computer and use it in GitHub Desktop.
Save slloyd/9006479 to your computer and use it in GitHub Desktop.
yo.coffee
x = [ 'a', 'b', 'c', 'd', 'e', 'f']
len = x.length
y = x[1...(len-1)]
z = x[1..(len-1)]
var len, x, y, z;
x = ['a', 'b', 'c', 'd', 'e', 'f'];
len = x.length;
y = x.slice(1, len - 1);
z = x.slice(1, +(len - 1) + 1 || 9e9);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment