JavaScript Modules and how to effectively work with Export Import
Posted on May 15, 2020
Introduction No one would like to work with the code having one gigantic JavaScript file with many unrelated functions. Moreover, when you need to use a few functions from that file, you end up loading all the others unnecessarily. AMD was a great ...