Question: How do you import the lodash library making it top-level Api available as the "\_" variable?

  1. `import _ from 'lodash';`
  2. `import 'lodash' as _;`
  3. `import '_' from 'lodash;`
  4. `import lodash as _ from 'lodash';`

Answer: The correct answer of the above question is Option A:`import _ from 'lodash';`