Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAjay Yadav
Full Stack JavaScript Techdegree Graduate 18,261 Pointswhere is bug
where is the problem. Anyone please help me in this code.why it is not working.
var calculator = {
sum: 0,
add: function(value) {
this.sum += value;
},
substract:0,
subtract: function(value) {
this.substract- =value;
},
multiply: function(value) {
},
divide: function(value) {
},
clear: function() {
this.sum = 0;
this.substract=0;
},
equals: function() {
return this.sum;
return this.substract;
}
}
1 Answer
Philip Gales
15,193 Points- You don't need subtract:0
- Use sum, not your subtract variable
- You put a space between '-' and '=' in your subtract function
var calculator = {
sum: 0,
add: function(value) {
this.sum += value;
},
subtract: function(value) {
this.sum-=value;
},
multiply: function(value) {
},
divide: function(value) {
},
clear: function() {
this.sum = 0;
this.substract=0;
},
equals: function() {
return this.sum;
return this.substract;
}
}