1 define(['../function/makeIterator_'], function (makeIterator) {
4 * Returns the index of the last item that matches criteria
6 function findLastIndex(arr, iterator, thisObj){
7 iterator = makeIterator(iterator, thisObj);
14 if (iterator(arr[n], n, arr)) {