UNPKG

@nknahom/lotide

Version:

Lotide is mini clone of the Lodash (https://lodash.com) library for learning JavaScript. What is Lodash? Lodash is a library that makes JavaScript easier by taking the hassle out of working with arrays, numbers, objects, strings, etc.

11 lines (9 loc) 201 B
const findKeyByValue = function (obj, value) { const keys = Object.keys(obj); for (let key of keys) { if (obj[key] === value) { return key; } } }; module.exports = findKeyByValue;