I’ll be using repl.it. You can find my repl here. Before moving forward, let’s set up our environment and get
Continue readingTag: JavaScript
Understanding the this keyword in JavaScript
In JavaScript, the This keyword refers to an object that is executing the current piece of code. This is one of
Continue readingHow to Store Credentials as Environment Variables and Read in JavaScript
Secrets are called secrets for a reason. We do not want others to know about them, be it in real
Continue readingHow to perform CRUD operation in React
CRUD consists of four functions that are Create, Read, Update and Delete and it is the most basic operation of
Continue readingHow to use context API in React
The concept of the Context API in React is nothing but a way of sharing data to the child component
Continue readingGetting started with testing in JavaScript
Testing is carried out when developing applications to ensure the code works as expected. There are different types of testing
Continue readingAll you need to know about Higher Order Components in React
The concept of Higher Order Component (HOC) in React is an advanced technique that is used in reusing the component
Continue readingHow to use the data structures in JavaScript
A data structure can be defined as a format that developers can use to store, manage, and organize data in
Continue readingHow Type Coercion works in JavaScript
The JavaScript documentation defines coercion as automatically or implicitly converting one data type to another data type. Conversion of data
Continue readingHow the module system works in JavaScript
We can define a system as a set of related components working together to solve a particular task. From this
Continue readingUnderstanding React Components and Props Core Concepts
The concept of the components and the props are a game changer for React. A component is nothing but an
Continue readingHow to use Promises, Generators and Async Await in JavaScript
We can implement our code for execution using two approaches that include: Synchronous code execution and asynchronous code execution. Synchronous
Continue reading