Skip to content

Instantly share code, notes, and snippets.

@adamfortuna
Created April 25, 2014 16:52
Show Gist options
  • Save adamfortuna/11296048 to your computer and use it in GitHub Desktop.
Save adamfortuna/11296048 to your computer and use it in GitHub Desktop.
t = [1,2,3]
[1, 2, 3]
t[0.5]
undefined
>> t = [1,2,3]
=> [1, 2, 3]
>> t[0.5]
=> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment