Created
July 11, 2014 19:01
-
-
Save miller3818/36c54da2d4ff584d3572 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |
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 Principles of Object-Oriented JavaScript | |
* Objects!!! | |
* | |
*/ | |
// Object 1 and 2 reference the same object | |
var object1 = new Object(); | |
var object2 = object1; | |
object1.myCustomProperty = "Awesome!"; | |
console.log(object2.myCustomProperty); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment