Currently, my goal is to add two numbers from an array using the code below. However, instead of adding them together, it seems that the code is only concatenating them.
if (this.id == "=") {
if (HYUTS[1] == '+') {
var sum = HYUTS[0] + HYUTS[2];
alert(sum);
}
}