ALAlan Linsinblog.alanlins.me·Aug 6, 2024 · 3 min readGit Rebasing: Must-Know Commands SimplifiedUsing rebasing can make development easier. However, it gets complex when the team decides to keep a single commit per pull request, rebase branches with master, check out branches from remote, and fix conflicts. This article will list a few of the m...00
ALAlan Linsinblog.alanlins.me·Jun 18, 2022 · 15 min readUnderstanding the keyword ‘this’ in JavaScriptIntroduction The keyword this works differently for javascript language. It can change its value depending on how it is called. After facing many issues, I wrote this article explaining how it works with just 4 rules to simplify the understanding and...00