Ddrxlopezingabslach.hashnode.dev·Jul 4 · 3 min readA step forwardHello world! It has been almost five years since I last wrote in this personal blog. The last time I was here, I was trying to gain a foothold in the tech industry. I was preparing to land the best po00
Ddrxlopezingabslach.hashnode.dev·Aug 1, 2022 · 1 min readJavascript change vs input eventThis will just be a quick blog. I’ve been re-learning the fundamentals of web development. It includes reviewing and going through the basics of javascript which is usually neglected as we heavily use high level frameworks such as React. One intere...00
Ddrxlopezingabslach.hashnode.dev·Jun 7, 2022 · 3 min readGenerators (NodeJS Iterators)function* setNextTurn(players: Player[]) { let i = 0; const playersLen = players.length; while (true) { const a: string = yield players[i].id; i++; if (i === playersLen) { i = 0; } } } I guess I'll be writing a blog wee...00
Ddrxlopezingabslach.hashnode.dev·May 25, 2022 · 2 min readSOLID PrinciplesI decided to start writing on my dev blog again awhile back but havent had the energy to do so. As I was reviewing the SOLID concepts, I felt happy that I can relate to it more compared last year when I first heard about it. Now, even with its simpli...00
Ddrxlopezingabslach.hashnode.dev·Sep 17, 2020 · 3 min readJS for..of and for..inWhen to use for..of and for..in in Javascript? Looping through Arrays and Objects By definition, the main difference between for..of and for..in is on where each of them looks as they loop through an array or object. As explained on Stackoverflow by ...02DG