When the actual data type of a variable will be decided?
For ex:
x=10 here x will hold integer
x="Hello" here x will hold string
My basic question is msgbox "2"+"3"
is 23 because these are strings and + is for concatenation so the result is 23
Then how the result of msgbox "2"*"3"
becomes 6? where the string will be converted to integers and returns 6