AAAbdullah Ansariindeveloperabdullah.hashnode.dev·Dec 28, 2022 · 3 min readMy journey of 2022 🧑💻👨💻 Dev Retro 2022Challenges you faced It was in January 2022 when I switched my job and started working with this new firm. And like every new job this one came with its own new challenges. Never before have I worked or integrated a testing library with my ReactJS we...00
AAAbdullah Ansariindeveloperabdullah.hashnode.dev·Nov 17, 2022 · 4 min readDestructuring in ES6Destructuring Objects The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables. It is special syntax introduced in ES6, for neatly assignin...00
AAAbdullah Ansariindeveloperabdullah.hashnode.dev·Oct 14, 2022 · 1 min readRest Parameter with Function ParametersThe rest parameter for function parameters was introduced in ES6 to help us create more flexible functions. The rest parameter syntax allows a function to accept an indefinite number of arguments. These arguments are stored in an array that can be ac...00
AAAbdullah Ansariindeveloperabdullah.hashnode.dev·Sep 12, 2022 · 1 min readUsing objects as key/value storageObjects can be considered as key/value storage, like a dictionary. If you have tabular data, you can use an object to look up values rather than a switch statement or an if/else chain. This is most useful when you know that your input data is limited...00
AAAbdullah Ansariindeveloperabdullah.hashnode.dev·Jul 2, 2022 · 1 min readUpdate node modules & npm and install YarnUbuntu comes with a pre-installed version of node and npm. To update it to the latest stable version run the following commands in your terminal. Installing the latest stable npm version To install the latest stable version of npm on your machine run...00