About Génesis
This author has not written his bio yet.
But we are proud to say that Génesis contributed 215 entries already.
Entries by Génesis
Rotate Markers in Google Maps
/in JavaScript/by GénesisStill as of today (post’s date) you cannot rotate markers in Google Maps, you only can resize them, however if you are using SVGs (what I always recommend) you can do any transformation you want 🙂
CSS 3D Layers Effect
/in CSS3, HTML5/by Génesis
Asynchronous iteration
/in JavaScript/by GénesisNot all loop work the same in JavaScript. If you want an asynchronous loop you cannot use forEach because it will execute each iteration independently, however if you use a for of it will work as expected: it will await until the previous iteration has finished. async () => { for (const e of elements) […]