What is an Operator? In JavaScript, an operator is a special symbol used to perform operations on operands (values and variables). For example, 2+3; // 5...
Continue reading...Currying in JavaScript
Currying simply means evaluating functions with multiple arguments and decomposing them into a sequence of functions with a single argument. In other terms, currying is when...
Continue reading...Basics of Aws Amplify
What is AWS Amplify AWS Amplify is a JavaScript library for frontend and mobile developers building cloud-enabled applications. The library is a declarative interface across different...
Continue reading...How to Use HTML Tables?
A table is a structured set of data made up of rows and columns (tabular data). A table allows you to quickly and easily look up...
Continue reading...React Error Boundaries
Error Boundaries basically provide some sort of boundaries or checks on errors, They are React components that handle JavaScript errors in their child component tree. React...
Continue reading...