parent
7fc6e874ee
commit
212f956f35
@ -1 +0,0 @@
|
|||||||
console.log('Hello, World!')
|
|
@ -1 +0,0 @@
|
|||||||
console.log('Welcome to 30DaysOfJavaScript')
|
|
@ -0,0 +1 @@
|
|||||||
|
console.log("Hello World!"); //print Hello World! in the console
|
@ -0,0 +1,15 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Day 1</title>
|
||||||
|
<script src="helloworld.js" ></script>
|
||||||
|
<script src="introduction.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1 @@
|
|||||||
|
console.log('Welcome to Javascript' + ' Day 1'); //print Welcome to Javascript Day 1
|
Loading…
Reference in new issue