Reassigning is as easy as declaring variables in ActionScript but in diffrence of without any var keyword and datatype section.
You can reassigne any variables as much times as you want in every line but keep in mind that you have to reassigne a variable that has been declared before.
structure:
VariableName = …
1 March 2010
No comments
Declaring variable is easy but like other OOP languages you must follow some rules
some times we may mention creating or defining avariable instead of declaring but both of them are correct
the syntax of declaring variables is as follows:
var CustomName:DataType;
CustomName = value;
and a a varianble can also be declared and assigned …
1 March 2010
No comments
to have a better understand of variables and the way to create them first yu should know what datatype is.
when we talk about data, we mean the information that can be stored or be written that can be unnderstand has amny kinds.
the same thing is also true in real world
suppose …
1 March 2010
No comments