Question: How do you import the lodash library making it top-level Api available as the "\_" variable?
- `import _ from 'lodash';`
- `import 'lodash' as _;`
- `import '_' from 'lodash;`
- `import lodash as _ from 'lodash';`
Answer: The correct answer of the above question is Option A:`import _ from 'lodash';`