JSFiddle - React, Tailwind, and code Playground

by Hugo Carneiro

JavaScript

var objects = [
	{
  	title: 'hello'
  },
  {
  	title: 'world'
  }
]

var titles = _.map(objects, 'title')
console.log(titles)