A function that calculates the area of a rectangle and returns the value as a number : function « Function « Flash / Flex / ActionScript






A function that calculates the area of a rectangle and returns the value as a number

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        trace(calculateArea(2,3));

    }
    function calculateArea(nA:Number, nB:Number):Number {
      var nArea:Number = nA * nB;
      return nArea;
    } 

  }
}

        








Related examples in the same category

1.Define a function
2.Calling Functions
3.Writing Recursive Functions
4.Functions as Objects
5.Passing Parameters to Your Function
6.Nested function call
7.Package-Level Functions
8.Global Functions
9.Nested Functions
10.Source-File-Level Functions
11.Accessing Definitions from Within a Function
12.Function to search an array
13.Creating Recursion function