Frontend Developer ( React.js, Typescript, HTML, CSS, JavaScript )
Avoid Creating Variables Using var console.log(varVariable) // undefined var varVariable = 10; console.log(varVariable) // 10 Variables created with...
In this article, I am going to share my experience of learning Swift programming language as a developer coming from Typescript knowledge. Display to...
Promises are used to get the result from an asynchronous code execution in JavaScript. In a web application, Promises are used almost everywhere....
Environment Variables in React Environment variables are variables which are present outside the project and embedded into the project during build...
Visual Studio Code is my editor for building web applications in React. I use a bunch of VS Code extensions to increase productivity, increase code...
Why do we need ESLint and Prettier? To keep it short, Prettier is used for code formatting and ESLint is used for catching bugs! ESLint ESLint is a...