1 min readJun 24, 2019
Meanwhile in lodash land:
import _ from 'lodash'
const thing = _.map(['1', '7', '11'], _.parseInt)
console.log(thing)
=>
[1, 7, 11]
Meanwhile in lodash land:
import _ from 'lodash'
const thing = _.map(['1', '7', '11'], _.parseInt)
console.log(thing)
=>
[1, 7, 11]