Skip to content

Instantly share code, notes, and snippets.

@briedis
Created October 24, 2016 14:30
Show Gist options
  • Save briedis/ddc76d0a50f549dd616d08fefe8d04ff to your computer and use it in GitHub Desktop.
Save briedis/ddc76d0a50f549dd616d08fefe8d04ff to your computer and use it in GitHub Desktop.
(function () {
'use strict';
function something() {
alert(counter);
}
var myObject = new function(){
this.data = {
counter: 0
};
this.method = function(){
this.data.counter += 1 ;
}
};
myObject.method();
alert(myObject.data.counter);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment