wip unit 2 program
wip unit 2 program
<html>
<body>
<script>
var a,b;
for(a=2;a<100;a++)
var c=true;
for (b=2;b<a;b++)
if(a%b==0)
c=false;
break;
if(c)
document.write(a+' ,');
}}
</script>
</body>
</html>
Output:
2) Write a Java Script to find factorial of a given number
<html>
<body>
<script>
var i, fact=1;
fact= fact*i;
</script>
</body>
</html>
Output:
3) Demonstrate a java script to display the welcome message using the alert whenever button
of a html form is pressed.
<html>
<head>
<script type = "text/javascript">
function fun() {
alert ("welcome");
</script>
</head>
<body>
<form>
</form>
</body>
</html>
Output: