Hi,

Is there a way to keep the value of a variable, when this one change, into another variable.

exemple:

var number =3;
var old_number;

now i add 1 to "number" i want to "old_number" keep the previous value.. so old_number = 3;

thx