Get element index in an array : Array « Dojo toolkit « JavaScript DHTML






Get element index in an array

 

<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 = [ "A", "N", "K", "S", "A" ];
      alert(dojo.indexOf(a, "A") + ", " + dojo.indexOf(a, "S") +
        ", " + dojo.indexOf(a, "N", 0, true));
    </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 item index