From 7d4da8b718b1f057b00bfd17c4a0a96ecde51d05 Mon Sep 17 00:00:00 2001 From: gomeantafa Date: Tue, 25 Oct 2016 17:53:28 +0900 Subject: [PATCH] here; --- objects/global_footprint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objects/global_footprint.md b/objects/global_footprint.md index 86de8075..b710b336 100644 --- a/objects/global_footprint.md +++ b/objects/global_footprint.md @@ -6,7 +6,7 @@ Suppose we are developing a counter module: var myCounter = { number : 0, plusPlus : function(){ - this.number : this.number + 1; + this.number = this.number + 1; }, isGreaterThanTen : function(){ return this.number > 10;