##Write A Javascript Code of Create A Cookie##
##Write A Javascript Code of Create A Cookie##
<!DOCTYPE html>
<html>
<head> <script>
function createCookie(){ var
cookie_value = username.value;
document.cookie = "username=" + cookie_value;
alert("Cookie is created");
}
</script>
</head>
<body>
Enter Username: <input type='text' id='username'>
<input type= 'button'value='create cookie' onclick='createCookie()'>
</body>
</html>
</script>
</head>
<body>
<p>Click the button to open multiple window.</p>
<input type="button" onclick="openWindow()" value="Open Windows">
</body>
</html>
</html>
Write a javascript code for setInterval()##
<html>
<head>
<script type = "text/javascript">
function myFunction()
{ setInterval(displayFunction,3000);
}
function displayFunction() {
document.getElementById("para").innerHTML+="<p> Welcome to Javascript.</>"
}
</script>
</head>
<body>
<p>Click to The set Time Interval</p>
<input type = "button" value = "Set Time Interval" onclick = "myFunction();"/>
<p id = "para"> </p>
</body>
</html>