Last active
March 16, 2019 20:50
-
-
Save leslie-alldridge/665b05830a255cdb98cff45d3a080974 to your computer and use it in GitHub Desktop.
Data structure example
This file contains hidden or 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
const data = { | |
houses: [{ | |
1: 'big house', | |
2: 'small house', | |
3: 'medium house' | |
}], | |
people:[{ | |
1: { | |
name: 'bethanie', | |
age: '22', | |
region: 'wellington' | |
}, | |
2: 'leslie', | |
3: 'burt' | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment