This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-09 13:10:08 +02:00
parent a5dcd67dae
commit 2507b3f198
4 changed files with 0 additions and 0 deletions

14
JS_freecodecamp/index.htm Normal file
View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href=""/>
<script src="script.js"></script>
</head>
<body>
Hello World!
</body>
</html>

View file

@ -0,0 +1 @@
console.log("Hello world");

View file

View file

@ -0,0 +1,6 @@
let firstName, lastName;
firstName = 'Geir';
lastName = 'Jerstad';
console.log(firstName, lastName);
const JUL_2024 = '24.12.2024';
console.log(JUL_2024);