Data Type Flash ActionScript

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var weather:String = "rain";
        
        if (weather == "rain") {
           trace("bringUmbrella");
        } else if (weather == "snow"){
           trace("bringCoat");
        } else if (weather == "sun") {
           trace("bringSunscreen");
        }
    }
  }
}