-
How to make a Calculator using React ?
In this tutorial we will create a calculator using react. while creating the app we will learn some Javascript methods like slice, concat ,eval and more.
-
How to make a Digital Clock using React ?
Making a Digital Clock using react will help us learn some Javascript methods, like setInterval() and useState().
-
What is the difference between js and jsx ?
JS and JSX are both different things. Where JS is a language and JSX is a syntax extension of js that makes it easier to write and read code.
-
How to remove focus from select in react(Javascript)
To remove focus from the select, we need to use the combination of “document.getElementById()” and blur() methods.
-
How to find highest and lowest number in array Javascript
Javascript provide us inbuilt methodsto find the highest and lowest number in an array but in this article we will see how they method actually works.
-
Diagonal Sum of a matrix in Javascript
Learn how to calculate the diagonal sum of a matrix in JavaScript. Use a loop to iterate through the elements along each diagonal line.
-
Make simple To-do app using React
Create and manage tasks with ease using a simple todo app. Stay organized and boost productivity with our easy-to-use interface.
-
Make Tic-Tac-Toe game using react javascript
Tic-Tac-Toe is a two player game where the player who secures 3 places diagonally, vertically or horizontally, wins the game.
-
Make Snake game using react.js (javascript)
In this tutorial we created a snake game using react.js, and we used several methods such as slice(), useEffect(), setInterval(), and clearInterval().
-
setInterval() method in javascript(react)
Improve user experience and simplify complex tasks with setInterval() in JavaScript. Schedule repeating actions in your code with ease