DoneJS StealJS jQuery ++ FuncUnit DocumentJS
3.0.0
2.3.27

 

  • Github
  • Twitter
  • Chat
  • Forum
  • Guides
  • Core
    • can-component
    • can-compute
    • can-connect
    • can-define
    • can-define/list/list
      • events
        • add
        • length
        • propertyName
        • remove
      • prototype
        • concat
        • filter
        • forEach
        • get
        • indexOf
        • join
        • map
        • on
        • pop
        • push
        • replace
        • reverse
        • serialize
        • set
        • shift
        • slice
        • sort
        • splice
        • unshift
        • *
        • #
      • static
        • extend
    • can-define/map/map
    • can-route
    • can-route-pushstate
    • can-set
    • can-stache
    • can-stache/helpers/route
    • can-stache-bindings
  • Ecosystem
  • Infrastructure
  • Legacy
  • Bitovi
    • Bitovi.com
    • Blog
    • Consulting
    • Training
    • Open Source
  • Chat
  • Forum
  • Star
  • Follow @canjs
  • CanJS
  • /
  • Core
  • /
  • can-define/list/list
  • /
  • forEach
  • / On this page
    • forEach

      function

      Call a function for each element of a DefineList.

      • source

      list.forEach(callback[, thisArg])

      Loops through the values of the list, calling callback for each one until the list ends or false is returned.

      list.forEach(function(item, index, list){ ... })
      

      Parameters

      1. callback {function(item, index, list)}:

        A function to call with each element of the DefineList. The three parameters that callback gets passed are:

        • item - the element at index.
        • index - the current element of the list.
        • list - the DefineList the elements are coming from.

        If the callback returns false the looping stops.

      2. thisArg {Object}:

        The object to use as this inside the callback.

      Returns

      {can-define/list/list}:

      The list instance.

      Use

      forEach calls a callback for each element in the DefineList.

      var list = new DefineList([1, 2, 3]);
      list.forEach(function(element, index, list) {
          list.get(index, element * element);
      });
      list.get(); // [1, 4, 9]
      

      CanJS is part of DoneJS. Created and maintained by the core DoneJS team and Bitovi. Currently 3.0.0.