Answers for "lodash react import"

1

how to import lodash in react

import _ from 'lodash';
Posted by: Guest on April-05-2021
1

import lodash

// import entire library
import _ from "lodash"
const nums = [1, 2, 2, 3, 1, 4]
let res = _.uniq(nums)

// import methods by name
// Still loads entire lodash library!!
import { uniq } from "lodash"
const nums = [1, 2, 2, 3, 1, 4]
let res = uniq(nums) // better readability

// import only what you need
import uniq from "loadash/uniq"
const nums = [1, 2, 2, 3, 1, 4]
let res = uniq(nums)
Posted by: Guest on June-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language