Skip to main content

Posts

How to show localstorage registration form data into HTML table | Dynamic Reading And Showing Table

Basic Flow of C Program Works | How "Hello, World!" program works In C Programming Language? Part#2

How to show desktop notification in javascript on localhost, live server 000webhost|Notification API

Login form authentication in JS with localstorage | Profile page | Logout Feature |Web Storage API

How to connect PHP with mysql and read data on live server 000webhost

How to connect python with mysql workbench and read data using jupyter notebook

How to implement QR Code scanner in Angular | zxing-js/ngx-scanner | Host angular build

Registration form in JS with localstorage | Store Array in localstorage|...

Is it possible to view bytecode of Class file | How to get byte code of any java class file.

How to store form data in local storage using javascript | Save Registration form in JS

Bachpan ka pyar song in python programming using BOT

Switch case in JavaScript | + - * / Operation using switch case

Is this possible to make a desktop application in Javascript | Google Meet clone using electron js

Lost and found project ai based | New Project Idea | Design AI Project

Live Code Editor Project In HTML , CSS , JS - part 1

Turn on or off bulb using JavaScript|Automatically turning light on and off according to time AM/PM

Traffic light program using javascript | An automated traffic signal project in javascript

Traffic light program using javascript | An automated traffic signal project in javascript

  TRAFFIC SIGNAL PROJECT WITH AUTO COUNT DOWN

Conditional statement in javascript| Alternative of Conditional Statemen...

Conditional statement in javascript| Alternative of Conditional Statements

Conditional statements control behavior in JavaScript and determine whether or not pieces of code can run. ... “ If” statements : where if a condition is true it is used to specify execution for a block of code. “Else” statements: where if the same condition is false it specifies the execution for a block of code. How to use Conditional Statements Conditional statements are used to decide the flow of execution based on different conditions. If a condition is true, you can perform one action and if the condition is false, you can perform another action. Different Types of Conditional Statements There are mainly three types of conditional statements in JavaScript. If statement If…Else statement If…Else If…Else statement 1) If statement Syntax: if (condition) { lines of code to be executed if condition is true } You can use If statement if you want to check only a specific condition. Try this yourself: <html> <head> <title>IF Statments!!!</title> <script typ...