28
Dec
Although it is a little late to talk about this, 11th edition of ECMAScript language specification was published in 2020(ECMAScript 2020). Some of the key new features of this 11th edition, have been discussed below. Dynamic Imports The standard import syntax in JavaScript is static. Static import statement looks like: import * as newModule from '/modules/dynamicmodule.js'; This will always evaluate the code of the imported module at the time...
Read More