Last active
December 11, 2020 13:22
-
-
Save smpnjn/0a717ce5d1cfa2458049d02256e313cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let myTuple = #["some", "array"]; | |
let foreignTuple = #["some", "array"]; | |
let myRecord = #{ | |
user: { | |
name: "Mark", | |
age: 25 | |
location: { | |
address: "Manhattan" | |
} | |
} | |
} | |
let importRecord = #{ | |
user: { | |
name: "Mark", | |
age: 25 | |
location: { | |
address: "Manhattan" | |
} | |
} | |
} | |
(myTuple === foreignTuple) // returns true; | |
(myRecord === importRecord) // returns true; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment