In appLab, is there are function or other easy to convert string to number?
Making a little calculator with a digit button for each of 0 to 9, so when one is pressed, the string digit is appended to the existing string.
For example, “1” + “2” = “12” but when the user pressed = want to convert to a number. Otherwise, I get “12” + “12” = “1212”, for example.