-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctions.html
More file actions
60 lines (44 loc) · 1.12 KB
/
Copy pathFunctions.html
File metadata and controls
60 lines (44 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html>
<head>
<title>Functions</title>
<h1>FUNCTIONS</h1>
</head>
<body>
<script type="text/javascript" >
function addTwo(a,b)
{
total=a+b
document.write("total is :",total)
}
function subTwo(a,b)
{
total=a-b
document.write("total is :",total)
}
function mulTwo(a,b)
{
total=a*b
document.write("total is :",total)
}
addTwo(10,20)
subTwo(30,15)
mulTwo(4,5)
function addNames(a,b)
{
total=a+b
document.write("name is :",total)
}
addNames("java","script")
//this function return value is coming
function numDiv(a,b)
{
total = a/b
return total
}
//var c collects the return value of the numDiv funtion
var c = numDiv(10,3)
document.write("answer is :",c)
document.write(typeof(c))
</script>
</body>
</html>