Get item index : Array « Dojo toolkit « JavaScript DHTML






Get item index

 


<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>

      var a = [ "B", "J", "K", "A", "B" ];
      alert(dojo.indexOf(a, "J") + ", " + dojo.indexOf(a, "B"));
    </script>

  </head>

  <body></body>

</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Array filter
2.Array index of
3.Array index offset
4.Get last index of
5.Is array like
6.Is object an array
7.Get element index in an array