Is anybody able to explain the difference between a simple import
and a System.import
statement of the ES6 Module Loader (or Polyfills like System.js, Webpack etc.)
Something like
System.import('https://code.jquery.com/jquery.js').then();
seems to be possible, as well as a simple
import 'jquery';
Is System.import
the only possibility to have a callback after the import statement?
System.import
allows you to load modules dynamically.import
does not allow that but doesn't require you to use callbacks. – Lanthanide