dag 3 commit 1
This commit is contained in:
parent
8bc31be735
commit
06bd2966ca
6 changed files with 58 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1 @@
|
|||
console.log("Hello world");
|
6
JS_frecodecamp/variables.js
Normal file
6
JS_frecodecamp/variables.js
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue