You are on page 1of 6

Name : Chaitanya Ramdas Bhosale

Roll No : 78

Enrollment No : 1815770231

Batch : 4

<html>

<body>

<script>

function msg()

alert("hello! this is message");

</script>

<input type="button" onclick="msg()" value="call function" />

</body>

</html>
<html>

<body>

<script>

function getcube(number)

alert(number * number * number);

</script>

<form>

<input type="button" value="click" onclick="getcube(4)" />

</form>

</body>

</html>
<html>

<body>

<script>

function getInfo(){

return "hello javatpoint! How r u?";

</script>

<script>

document.write(getInfo());

</script>

</body>

</html>
<!DOCTYPE html>

<html>

<body>

<script>

var add = new Function("num1", "num2", "return num1+num2");

document.writeln(add(2, 5));

</script>

</body>

</html>

You might also like