Home | Computer Science
write a programme using document.write(_____);

<html>

<head><title>javascript</title>

<script>

let a ,b;

a="hello";

b=89.89;

document.write(a+b);

</script>

</head>

<body>

</body>

</html>

output:-

hello89.9

16. Write a programme using document.write(_________________);

<html>

<head><title>javascript</title>

<script>

document.write("hello javascript"+"<br>"+5+"*"6);

</script>

</head>

<body>

</body>

</html>

OUTPUT

hello javascript
30