Skip to content

Instantly share code, notes, and snippets.

@mhanberg
Created September 6, 2019 16:57
Show Gist options
  • Select an option

  • Save mhanberg/e01f2780c9d73bb1b470e092b2419015 to your computer and use it in GitHub Desktop.

Select an option

Save mhanberg/e01f2780c9d73bb1b470e092b2419015 to your computer and use it in GitHub Desktop.
if value == "Alice" || value == "Bob" || value == "Carol" do
# stuff
end
if Enum.member?(["Alice", "Bob", "Carol"], value) do
# stuff
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment