actionscript 3 - action script 3 whole number as a division output -


hello, want whole number after division.

x = 3/2;   //results x = 1 , not 1.5 

how in as3??

you can cast result of division integer:

var x : int = int(3/2);


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -