Monday, October 12, 2015

Javascript Tutorial For Beginners 6 # JavaScript Functions

1:48 PM







<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Javascript Function</title>
</head>
<body>
<h1 id="demo"></h1>
<h1 id="sum"></h1>
<h1 id="sum1"></h1>
<script type="text/javascript">
/*
function functionName (param1, param2) {
function body
}
*/
function printMessage () {
document.getElementById("demo").innerHTML = "Hello world";
}
function add (num1,num2) {
return num1+num2;
}
printMessage ();
document.getElementById("sum").innerHTML = add(100,200);
document.getElementById("sum1").innerHTML = add("hello ","world");
</script>
</body>
</html>


















Searches related to javascript function

javascript function onclick

javascript function call

javascript function in html

javascript anonymous function

javascript function list

javascript function apply

calling javascript function from c#

onsubmit javascript function

Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top