I have this array which contains objects:
var tmp_array = [ { headline: \"Test\", text: \"Test text\", send_at: \"test date\" } ];
Now in the
This should work:
WholeNews() { return tmp_array.map(function(news, i){ return( {news.headline} {news.text} ); }); } render() { return( {this.WholeNews()} ) }