<head>
<script>
console.log("Hello world")
</script>
</head>
<body>
<h1>Text</h1>
</body>
<script src="app.js" type="text/javascript"></script>
console.log("Hello world")
๐Alert and Prompt are popup boxes in JavaScript.
๐Before user enters the page,If you want user to take input then we use prompt.
var userName = prompt("East or west,neoG is the best");
console.log(userName);
๐If you want to give user an important note before he/she enters the page,we use alert.
alert("Hello world")
๐It is the purest form,Plain form of JavaScript in which we do not use any frameworks or additional libraries