jweinst1
3/28/2016 - 6:03 AM

uses an oper token in a dictionary

uses an oper token in a dictionary

//symbol experimentation

//operator function dict
var funcs = {
	"+":function(num1, num2) {
		return num1 + num2;
	}
};