Finding Absolute Values : Math : Development Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Development » Math »

 

Finding Absolute Values


 
package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var nValue:int 10;
        
        if(nValue < 10 && nValue > -10) {
          // Code goes here.
        
        //can be rewritten in the following way using the abs() method: 
        if(Math.abs(nValue10) {
          // Code goes here.
        }
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Development
» Math