Simple ways to write better and cleaner React code Sumit Kumar Pradhan May 25, 2021 In this tutorial we are going to use discuss on react best practices and best way to write clean code . In general, learning how to write c... Continue Reading
React Errors : Super expression must either be null or a function Sumit Kumar Pradhan May 16, 2021 Firstly, if you're certain that you're extending from the correctly named class, e.g. React.Component , not React.component or Reac... Continue Reading
What is React ? Sumit Kumar Pradhan May 15, 2021 React is a JavaScript library that aims to simplify the development of visual interfaces. Continue Reading
React Virtual DOM Explained Sumit Kumar Pradhan May 15, 2021 If you are using React or learning React, you must have heard of the term Virtual DOM . In this tutorial we are going to discuss on React... Continue Reading
Why should you learn React ? Sumit Kumar Pradhan May 15, 2021 I highly recommend that any Web developer has at least a basic understanding of React. Continue Reading
How to Disable ESLint For a File in React Native Sumit Kumar Pradhan May 13, 2021 ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code. It was created by Nicholas C. Zakas in... Continue Reading
react-scripts is not recognized as an internal or external command ReactJS Error Fix Sumit Kumar Pradhan May 11, 2021 While developing react apps it’s common to face react-scripts is not recognized as an internal or external command react error. The full e... Continue Reading
What are the differences between React controlled and uncontrolled components? Sumit Kumar Pradhan April 29, 2021 Controlled and uncontrolled components are just different approaches to handling input form elements in react. Continue Reading
Beginners Guide To Setup React Environment Sumit Kumar Pradhan March 30, 2019 Today, we will see how to install an environment and require dependencies for development of reactjs application . The environment and con... Continue Reading
Best Editors For React Native Mobile App Development Sumit Kumar Pradhan March 22, 2019 Here are 5 most useful React Native IDE & editors for React Native that will help developers to create a react native app efficiently.... Continue Reading
How to console.log in React application using JSX ? Sumit Kumar Pradhan February 27, 2019 In this tutorial, we are going to discuss how to perform console.log() in react and react native application inside the render block. Mos... Continue Reading
Example to Call Functions of Other Class From Current Class in React Native Sumit Kumar Pradhan February 26, 2019 This tutorial explains how to Call Functions of Other Class From Current Class in React Native application. If you read java, c++ and oth... Continue Reading
Passing parameters to arrow function in react js Sumit Kumar Pradhan February 18, 2019 This tutorial explains how to pass parameters to arrow function in react js application. Implementation of passing parameters to arrow func... Continue Reading
Simple ways to speed up your react native app Sumit Kumar Pradhan February 03, 2019 This this tutorial we are going to discuss simple ways to speed up react or react native application. Hope this method helps to improve th... Continue Reading
Create Simple Popup Example In React Application Sumit Kumar Pradhan January 13, 2019 In this tutorial we will see how to create simple popup in react application . Here we will provide you very simple and very easy example, ... Continue Reading
Understanding Iterables & Iterators in javascript -ES6 Sumit Kumar Pradhan January 13, 2019 In this tutorial we are going to learn how to use Iterables & Iterators in javascript application . It is a very easy topic and here in... Continue Reading
GitHub Private Repos are Now Free Sumit Kumar Pradhan January 08, 2019 The announcement of free private repositories probably took some of GitHub’s competitors by surprise, but here is what we heard from GitLa... Continue Reading
Snapshot testing in React Components with Jest Sumit Kumar Pradhan January 06, 2019 In this tutorial we are going to learn how to perform snapshot testing in react application . Jest is a JavaScript unit testing framework ... Continue Reading