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 - IIFE: var vs this - is there any difference? -

r - Grow a ffdf data frame on disk gradually -