typo
This commit is contained in:
parent
a5dcd67dae
commit
2507b3f198
4 changed files with 0 additions and 0 deletions
14
JS_freecodecamp/index.htm
Normal file
14
JS_freecodecamp/index.htm
Normal 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>
|
1
JS_freecodecamp/script.js
Normal file
1
JS_freecodecamp/script.js
Normal file
|
@ -0,0 +1 @@
|
|||
console.log("Hello world");
|
0
JS_freecodecamp/style.css
Normal file
0
JS_freecodecamp/style.css
Normal file
6
JS_freecodecamp/variables.js
Normal file
6
JS_freecodecamp/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