ARAkhil rathipellyinlets-do-this.hashnode.dev·Jan 30, 2023 · 1 min readDifference Between setTimeout and setIntervalsetTimeout and setInterval are both JavaScript functions that can be used to schedule code to be executed after a certain period of time. The main difference between the two is how they behave: setTimeout is a one-time function that executes a piece...00
ARAkhil rathipellyinlets-do-this.hashnode.dev·Jan 20, 2023 · 1 min readUse let Instead Of var KeywordOne of the biggest problems with declaring variables with the var the keyword is that you can easily overwrite variable declarations: var camper = "James"; var camper = "David"; console.log(camper); In the code above, the camper the variable is orig...00
ARAkhil rathipellyinlets-do-this.hashnode.dev·Jan 5, 2023 · 3 min readGit Pre-Commit Hook Configuration in ReactjsIntroduction Before exploring the git pre-commit hook configuration, let us find out what we used to do before this every developer has to run the commands in sequential order so that they can able to achieve the code quality. Before: npm run lint ...00