Skip to content

Instantly share code, notes, and snippets.

@chalmagean
Created May 5, 2021 12:28
Show Gist options
  • Save chalmagean/adb22dfbc5aca90a3cbdda7d491e08ea to your computer and use it in GitHub Desktop.
Save chalmagean/adb22dfbc5aca90a3cbdda7d491e08ea to your computer and use it in GitHub Desktop.
products = [
{ id: 1, name: "Foo" },
{ id: 2, name: "Bar" }
];
# display products
products.each_with_index { |prod, idx| puts "#{idx}. #{prod[:name]}" }
# user picked 1
cart << products[1][:id]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment