MySQL download for windows | MySQL installer 64 bit

In this article, you will see how you install MySQL server 8.0.27 on the Windows 10 operating system using the MSI installer. MSI installer is also known as Microsoft installer or Windows Installer. It is a type of installer developed by Microsoft for use in the Microsoft operating system. How do we install MySQL Server on Windows …

MySQL download for windows | MySQL installer 64 bit Read More »

Install MySQL Workbench 8.0.27 on Windows 10[step-by-step]

In this article, you will see how do you install MySQL Workbench 8.0.27 on Windows 10. Here we are going to show you the installation process using the MySQL MSI installer. What is MySQL Workbench? MySQL Workbench is a GUI tool for working with MySQL servers and databases. It provides data modeling, SQL development, and …

Install MySQL Workbench 8.0.27 on Windows 10[step-by-step] Read More »

Install MySQL Server 8.0.27 [zip Archive] on Windows 10

In this article, you will see how do you install MySQL server 8.0.27 on the Windows 10 operating system using a zip archive file. Software Dependency MySQL Server 8.0.27 [zip] Windows 10 How do we install MySQL server on Windows 10(64-bit)? Steps to install MySql server on windows 10 64-bit operating system: Download MySql zip …

Install MySQL Server 8.0.27 [zip Archive] on Windows 10 Read More »

How to use setInterval() in JavaScript?

This article shows you a complete understanding of the setInterval() method and its uses in Javascript. The setInterval() is a method available in the window object. It is a global method, that can be called from anywhere. The setInterval() method, repeatedly calls a function or executes a piece of code, with a fixed time delay(in milliseconds) between each call. Let’s …

How to use setInterval() in JavaScript? Read More »

How to use setTimeout() in JavaScript?

This article shows you a complete understanding of the setTimeout() function and its uses in Javascript. The setTimeout() is a function available in the window object. The global setTimeout() method sets a timer that executes a function or specified piece of code after specified milliseconds. Let’s see a few examples of setTimeout() method below:- Example1 Example2 What is …

How to use setTimeout() in JavaScript? Read More »

Spinning wheel animation in JavaScript

This article shows you how to create a spinning or moving wheel animation in javascript. We are going to use simple HTML, CSS, and Javascript to develop this example. Here basically we will use the setInterval() method which is available in window Object of Javascript. The setInterval() method calls the callback function at the specified …

Spinning wheel animation in JavaScript Read More »

How to Build a Bouncing Ball using JavaScript?

This article shows you how to create a bouncing ball animation using javascript. Here we are going to use simple HTML, CSS, and Javascript to develop this example. Basically, we will use the setInterval() method of Javascript available in the window Object. The setInterval() method calls the callback function at the specified interval time. The setInterval() …

How to Build a Bouncing Ball using JavaScript? Read More »

Traffic signal light using Javascript

In this article, you will see the creation of a Traffic signal light using Javascript. Traffic lights, traffic signals, stoplights are signaling devices positioned at road intersections, pedestrian crossings, and other locations to control the flows of traffic. To develop this application, we will use simple HTML, CSS, and Javascript. Basically, we are going to …

Traffic signal light using Javascript Read More »

Accurate and easy stopwatch Timer in JavaScript

This article shows you how to create an Accurate stopwatch in Javascript. In another article, we have already created a simple stopwatch(See here). But there is a problem you might observe the result of Stopwatch is not accurate. The reason for the problem is we depend on setTimeout() method alone. The setTimeout() calls the callback …

Accurate and easy stopwatch Timer in JavaScript Read More »

How to create a Stopwatch in JavaScript?

In this article, you will see how to create a “Stopwatch” application. Creating a Stopwatch application is very simple in Javascript. There might be multiple solutions for it but here we will use Javascript setTimeout() function to develop this application. The setTimeout() is a javascript method available in the window object. The setTimeout() method calls a function …

How to create a Stopwatch in JavaScript? Read More »