Skip to content

Instantly share code, notes, and snippets.

@artistwhocodes
Last active June 20, 2019 02:09
Show Gist options
  • Save artistwhocodes/8f6a694326d6a43916b9b4f6bfc5d75f to your computer and use it in GitHub Desktop.
Save artistwhocodes/8f6a694326d6a43916b9b4f6bfc5d75f to your computer and use it in GitHub Desktop.
zip method merges array
question = ["Name", "Age", "Location", "Color"]
answer = ["Pam", "?", "Hogwarts", "green"]
infor_section = question.zip(answer)
# => => [["Name", "Pam"], ["Age", "?"], ["Location", "Hogwarts"], ["Color", "green"]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment