There are different ways to loop through tings.
Repeat things or process a list.
for (const item of items) { saveData(item); } items.forEach(item => { saveData(item); })...
Tips and tricks for developing javascript code.
JS will execute when loaded in the browser or called via node. When...
Welcome to the wonderful world of Javascript!
This introduction should provide an orientation to developing with...
Use a composer.json file from a Drupal project to check which modules are installed.
Since it's a json file, we can just...
We'll use NextJS to render the extension UI.
npx create-next-app@latest
Typescript makes Javascript strongly typed, for writing code that is more maintainable and fewer bugs. By declaring the...
Explanation of js module concepts for Typescript.
The ECMAScript specification defines how ESM imports and exports link...