Basically, I have an array of posts that contains 3 objects: posts[{},{},{}]
Each object looks something like this:
1: Object
__v: 0
_id: "5686e17fc64feafd4486f22c"
created_at: "2016-01-01T20:28:47.889Z"
image: "Test"
message: "Test"
title: "Test Post 1"
updated_at: "2016-01-01T20:28:47.889Z"
I'm wondering how I can get an index or something of each object, but also use that for the object's properties.
I was testing earlier with an object of objects, and all I had to do there was: Object.keys(this.props.data).map(this.renderPostTile). Then I could just use a parameter for renderPostTile(key).
How can I do something similar when I have an array of objects?

posts.map(function(post) {...}){postData.map(this.renderTitle)}Above I have defined postData as this.props.data.posts.map(this.renderTitle);var postData = this.props.postssorry for the confusion