MACROMEDIA FLEX-FLEX ACTIONSCRIPT LANGUAGE Reference page 257

Actionscript language reference
Table of Contents

Advertisement

Example
The following example shows the use of
:
Array.unshift()
var pets_array:Array = new Array("dog", "cat", "fish");
trace( pets_array ); // dog,cat,fish
pets_array.unshift("ferrets", "gophers", "engineers");
trace( pets_array ); // ferrets,gophers,engineers,dog,cat,fish
Array.unshift()
257

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLEX-FLEX ACTIONSCRIPT LANGUAGE and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flex

Table of Contents