Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Created by JetBrains WebStorm.
- * User: search.msn.com
- * Date: 16.02.12
- * Time: 20:22
- * To change this template use File | Settings | File Templates.
- */
- function GarbageObject() {
- this.AgarbageField = 'zzzzz';
- this.AundefinedField = undefined;
- }
- function MyObject() {
- this.AstringField = true;
- this['AnumberField'] = 2;
- this.AobjectField = {'anotherFIeld': 'yes'};
- this.AfuncField = function () {};
- this.AcallbackField = (function GarbageObject() {return 5;})();
- }
- var testObject = new MyObject();
- //testObject.
- (function (testedObj1) {
- //testedObj1.
- })(testObject);
Advertisement
Add Comment
Please, Sign In to add comment