getDay() or getUTCDay() methods return the day of the week as an integer from 0 to 6. : Date : Development Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Development » Date »

 

getDay() or getUTCDay() methods return the day of the week as an integer from 0 to 6.


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var dWhen:Date = new Date(197891320);
        trace(dWhen.getDay());
        trace(dWhen.getUTCDay());

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Development
» Date