Skip to content

Instantly share code, notes, and snippets.

@kleytonmr
Last active June 1, 2020 02:15
Show Gist options
  • Save kleytonmr/f775b14c3dd61e8b436f8cafa53a0a01 to your computer and use it in GitHub Desktop.
Save kleytonmr/f775b14c3dd61e8b436f8cafa53a0a01 to your computer and use it in GitHub Desktop.
Repetition
# arr * int → an_array
# arr * str → a_string
[1, 2, 3] * 3 # => [1, 2, 3, 1, 2, 3, 1, 2, 3]
[1, 2, 3] * "-" # => "1-2-3"
[1, 2, 3] * "--" # => "1--2--3"
[1, 2, 3] * "+" # => "1+2+3"
[1, 2, 3] * ";" # => "1;2;3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment