I\'m developing a little app in React Native and I am looking for something like a foreach function. I just can\'t find a foreach loop. Not on StackOverflow and not even in the
You can also use lodash (npm install lodash) and run the following:
import _ from 'lodash'; ... _.each(dataList, function(userObject, key) { console.log(userObject, key); });