Hello, got a problem with addition, I have a function that will need a number. Like:
my_function(numb)
and now I want to get the next number (numb + 1) but It will output as 11 instead of 1 + 1 = 2..
I tried to use this:
var next = numb + 1..
and this:
var next = 0;
next = numb + 1;
and this:
var one = 1;
var next numb + one;
but it will give me the same result all the time, the previous (-1) works great but not the +1..
