Created
March 23, 2016 22:00
-
-
Save mde/5a62ad0d4efae31ccfaf 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
var Foo = Ember.Object.extend({zerb: function () {}}); | |
undefined | |
var bar = Foo.create(); | |
undefined | |
JSON.stringify(bar); | |
"{}" | |
bar.set('asdf', 'ASDF'); | |
Class {asdf: "ASDF", __ember1458770221107: null, __nextSuper: undefined, __ember_meta__: Object} | |
JSON.stringify(bar); | |
"{"asdf":"ASDF"}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment