Was going through the MDN docs and found this page (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import) about importing in javascript?
Very confused about the following lines, any help would be appreciated.
import { export1 , export2 as alias2 , [...] } from "module-name";
import defaultExport, { export1 [ , [...] ] } from "module-name";