when subtracting a string that is number and a number what is the type of the end result javascript code example
Example: javascript 1 + "1"
console.log(10+"1"); //101
console.log(10-"1"); //9
console.log(10+"1"); //101
console.log(10-"1"); //9