Created
February 27, 2015 09:02
-
-
Save teddychan/c3074b381fc2c2c770d3 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
var may = { | |
'orange': 1, | |
'apple': 2 | |
}; | |
var john = { | |
'lemon': 2, | |
'apple': 1 | |
}; | |
var i_want = { | |
'lemon': { | |
'john': 2 | |
}, | |
'apple': { | |
'john': 2, | |
'may': 2 | |
}, | |
'orange': { | |
'may': 1 | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment