Definition: It is an object of java script which is meant for providing variables and functions for performing mathematical functions on the web page. Program…
Posts published in “Javascript Examples”
Program : <html> <head> <script language=”javascript”> function display() { a=parseFloat(document.getElementById(“t1”).value); document.write(“<table border=1>”); for(i=1;i<=10;i++)…
Program : <html> <head> <script type=”text/javascript”> function display() { a=parseInt(prompt(“Enter A value”)); b=parseInt(prompt(“Enter B value”));…
Definition : It is a process of writing java script code within the web page then it is called as internal java script. Program…