Tutorial: Write Your First JavaScript Program
JavaScript programs execute in the browser. That means you need an HTML document. Here is a simple one to start with:
<!DOCTYPE html>
<html lang="en">
<head>
<title>My document</title>
</head>
<body>
</body>
</html>
That is a very basic HTML docum...
edtorres.hashnode.dev1 min read