Rajesh SinghAug 31, 20221 minSwitch Statement in Java ScriptSwitch Statement: A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case...
Rajesh SinghFeb 11, 20222 minWhat is CSS and its types with Examples?CSS stands for Cascading Style Sheet. A CSS files allows us to style for HTML Content. We can present the content on our website with...
Rajesh SinghOct 4, 20211 minJava Script program to add, subtraction,multiplication, division and modulus of two Numbers<html> <head> <title> Java Script program to add, subtraction,multiplicaion and division of two Numbers</title> <script...
Rajesh SinghOct 3, 20211 minJava Script program to find simple interest<html> <head> <title> form event</title> <script language="javascript"> function si(fnm) { P=fnm.t1.value R=fnm.t2.value T=fnm.t3.value...
Rajesh SinghSep 23, 20211 minIf else if statement in Java Script with ExamplesIf Statement: If statement is execute when condition is true. If condition is not satisfied then statement is not execute. It means we...