var i1=3;
var i2="3";
var i3= i1+i2;
var i4= i2+i1;
So, i3 must be of type integer because of i1 and i4 must be of type string because of i2, but when I launch the code it turns out completely different. They are both equal to "33". How to sum them?