Created
December 14, 2014 21:03
-
-
Save mgol/bca071be9c866ec21011 to your computer and use it in GitHub Desktop.
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
// The diff between the following two definitions has one line: `+c: 3,`: | |
var o1 = { | |
a: 1, | |
b: 2, | |
}; | |
var o1 = { | |
a: 1, | |
b: 2, | |
c: 3, | |
}; | |
// The diff between the following two definitions has three lines: `-b: 2`, `+b: 2,`, `+c: 3`: | |
var o2 = { | |
a: 1, | |
b: 2 | |
}; | |
var o2 = { | |
a: 1, | |
b: 2, | |
c: 3 | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment