intValue1 = parseInt(value1);
intValue2 = parseInt(value2);
newValue = intValue1 + intValue2;
Finche' non gli dici che sono due interi, per lui sono due stringhe.
intValue1 = parseInt(value1);
intValue2 = parseInt(value2);
newValue = intValue1 + intValue2;
Finche' non gli dici che sono due interi, per lui sono due stringhe.
There are 10 types of people in the world - those who understand binary and those who don't.