Здравствуйте!
Объясните, пожалуйста, почему мы не можем в след. коде к объекту methods применить this.methods, а не var.. Хочу разобраться, чтобы появилось понимание логики!
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}
function Calculator() {
var methods = {
"-": function(a, b) {
return a - b;
},
"+": function(a, b) {
return a + b;
}
};
this.calculate = function(str) {
var split = str.split(' '),
a = split[0],
op = split[1],
b = split[2]
if(!methods[op] || !isNumeric(a) || !isNumeric(b)) {
return NaN;
}
return methods[op](+a, +b);
}
this.addMethod = function(name, func) {
methods[name] = func;
};
}
var calc = new Calculator;
calc.addMethod("*", function(a, b) {
return a * b;
});
calc.addMethod("/", function(a, b) {
return a / b;
});
calc.addMethod("**", function(a, b) {
return Math.pow(a, b);
});
var result = calc.calculate("2 ** 3");
alert(result); // 8
</script>
</body>
</html>