Static Variables and Static Methods in Python are really useful and commonly asked about during interviews. It is helpful in
Continue readingTag: Tutorial
What is axios.create in JavaScript?
I’ll be using repl.it. You can find my repl here. Before moving forward, let’s set up our environment and get
Continue readingUnderstanding 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 Send and Receive Data in Flask
I’ll be using Repl.it for writing all the code. Repl.it lets you quickly deploy your API and is really convenient.
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 Use Python to Post on Popular Blogging Websites
Create once, publish multiple times. Automate the manual work with Python 💯 In this article, we will use Python to automate
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 reading