Doom-the-wolf on DeviantArthttps://www.deviantart.com/doom-the-wolf/art/AS-Tutorial-Ch-1-Variables-210248996Doom-the-wolf

Deviation Actions

Doom-the-wolf's avatar

AS Tutorial - Ch.1 Variables

Published:
4.7K Views

Description

Here's the second ActionScript tutorial from a long series. This series explains programming to people who have never programmed before. The tutorial will not focus on how to use Flash.

Chapter 1: Variables, types and values
24 pages.
This chapter will teach you about the data aspect of a program. What a variable is and how to use it.

Last: [link]
Next
Structured types

NOTE: In the page titled "Type Conversion: String to Boolean", there is a mistake. Where it says:
Number(
you should read:
Boolean(
© 2011 - 2024 Doom-the-wolf
Comments29
Join the community to add your comment. Already a deviant? Log In
beachbum811's avatar
what's the difference between

var PowerLevel:Number;
PowerLevel = 9001

and

var PowerLevel:Number = 9001