Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created November 17, 2019 21:43
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 magdamiu/d35926bb1b5a4f2b1ba7389d5e7fe95f to your computer and use it in GitHub Desktop.
Save magdamiu/d35926bb1b5a4f2b1ba7389d5e7fe95f to your computer and use it in GitHub Desktop.
Equality checks
val countries = setOf("Java", "JavaScript", "Swift")
val neighbors = setOf("Swift", "JavaScript", "Java")
println(countries == neighbors) // => true
println(countries === neighbors) // => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment