Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Created June 2, 2019 22:10
Show Gist options
  • Save jjuliano/474341963822a53211c2707eb44157b1 to your computer and use it in GitHub Desktop.
Save jjuliano/474341963822a53211c2707eb44157b1 to your computer and use it in GitHub Desktop.
a = [1, 2, 3, 4, 5, 0]
a.drop_while {|i| i < 3 } #=> [3, 4, 5, 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment