Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created January 12, 2016 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/011a61eaa4dd2b8a8cec to your computer and use it in GitHub Desktop.
Save chuck0523/011a61eaa4dd2b8a8cec to your computer and use it in GitHub Desktop.
num_array = [].fill(0, 0, 5)
puts num_array # [0, 0, 0, 0, 0]
str_array = [].fill('A', 0, 5)
puts str_array # ['A', 'A', 'A', 'A', 'A']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment