JavaScript
-
Understanding and Advantages of JavaScript
The Javascript programming language is an object-oriented programming language for building interactive web pages. A Java script allows user entries…
Read More » -
JavaScript Program to Convert Temperatures
Write a JavaScript program to convert temperatures to and from celsius, Fahrenheit [Formula: c/5 = f-32/9 [ where c =…
Read More » -
JavaScript Function to Checks String is Palindrome or Not?
Write a JavaScript function, to check string is palindrome or not. <html> <head> <title> …
Read More » -
JavaScript Program to Create a Timer
Write a JavaScript Code to Create a Timer onload. <html> <head> <script type="text/javascript"> …
Read More » -
JavaScript Program to Calculate the Total of Length, Width & Height
Write a JavaScript Program to Calculate the Total of Length, Width, and Height. Write javascript code to calculate the volume…
Read More » -
JavaScript Program to Calculate the Sum Total
In this scripting program, you will learn how to calculate the sum total of the 5 subjects. Each individually entered…
Read More » -
Advantages and Disadvantages of Client Side Scripting
What is Client Side Scripting? Client-side scripting simply means running scripts, such as JavaScript, on the client device, usually within…
Read More » -
Advantages and Disadvantages of Server Side Scripting
What is Server Side Scripting? Server-side scripting is a technique used in web development that involves employing scripts on a…
Read More » -
JavaScript – Comments and Syntax
Comments in JavaScript Normally in JavaScript, the comments are treated as text between //. Multiple line comments are treated as…
Read More » -
JavaScript – Variables, Naming Rules, and Syntax
Variables and Naming Rules Variables can be used to hold values [e.g.: (x=10) or expression (a=b+c)]. Can have short names…
Read More »