var Product = { count: 1, getCount: function( ) { return this.count++; } }; console.log(Product.getCount( )); var func = Product.getCount; console.log(func( ));