JSFiddle - React, Tailwind, and code Playground

by Hugo Carneiro

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.15/lodash.min.js"></script>

JavaScript

var mobile = {
	key: 'mobile'
}

var tablet = {
	key: 'tablet'
}

var web = {
	key: 'web'
}

var result = _.map([mobile, tablet, web], 'key').indexOf('tablet') > -1

console.log(result)