Skip to content

Instantly share code, notes, and snippets.

@imjacobclark
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save imjacobclark/9943316 to your computer and use it in GitHub Desktop.
Save imjacobclark/9943316 to your computer and use it in GitHub Desktop.
function Calculator(){
this.add = function(num1, num2){
if(this.isNumber([num1,num2]) == false){
throw "error: invalid input to function.";
}else{
return num1 + num2;
}
}
this.subtract = function(num1, num2){
if(this.isNumber([num1,num2]) == false){
throw "error: invalid input to function.";
}else{
return num1 - num2;
}
}
this.isNumber = function(arr){
//console.log(arr);
for(var i=0; i <= arr.length; i++){
//console.log(arr[i]);
return (typeof(arr[i]) === 'number') ? true : false;
}
}
}
var calc = new Calculator();
console.log(calc.add(1,"2"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment