SoFunction
Updated on 2025-04-02

Introduction to the role of Array's IndexOf in Flex


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="/mxml/2009"
xmlns:s="library:///flex/spark"
xmlns:mx="library:///flex/mx"
width="100%" height="100%" creationComplete="creationHandler(event)">
<s:layout>
<s:BasicLayout/>
</s:layout>
<fx:Script>
<![CDATA[
import ;

/**
* Initialization function
* indexOf is used to search from small to large in index
* If you find it, return the index value, and if you can't find it, return -1
*/
protected function creationHandler(event:FlexEvent):void
{
var array:Array = ["peach tree","pear tree","pine tree","campont tree"];
if(("Pear Tree") != -1)
{
trace("Check from small to large by index:"+("pear tree"));
}
if(("Campus Tree",3) != -1)
{
trace("Start from the third element, check from small to large by index:"+("Campus Tree", 3));
}
}

]]>
</fx:Script>
<fx:Declarations>
<!-- Put non-visual elements (such as services, value objects) here -->
</fx:Declarations>
</s:Application>