how would i be able to so something like this using actionscript: 4^2=16
without just multiplying the number by the number? is it possible?
Printable View
how would i be able to so something like this using actionscript: 4^2=16
without just multiplying the number by the number? is it possible?
Code:trace(Math.pow(4,2));
thanks