Skip to content

Commit 990053d

Browse files
author
degausser
committed
completed exercises
1 parent e36036e commit 990053d

8 files changed

Lines changed: 1054 additions & 0 deletions

File tree

Binary file not shown.

.vs/JavaScript_Variables/FileContentIndex/read.lock

Whitespace-only changes.

.vs/JavaScript_Variables/config/applicationhost.config

Lines changed: 1016 additions & 0 deletions
Large diffs are not rendered by default.

.vs/JavaScript_Variables/v17/.wsuo

11 KB
Binary file not shown.

.vs/ProjectSettings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"CurrentProjectSetting": null
3+
}

.vs/VSWorkspaceState.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"ExpandedNodes": [
3+
""
4+
],
5+
"SelectedNode": "\\C:\\Users\\charl\\Source\\Repos\\JavaScript_Variables",
6+
"PreviewInSolutionExplorer": false
7+
}

.vs/slnx.sqlite

88 KB
Binary file not shown.

app.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ console.log(
55

66
// Exercise 1
77

8+
const firstName;
9+
let lastName;
10+
var age;
11+
812
// Exercise 2
913

14+
firstName = "Charlie";
15+
lastName = "Doyle";
16+
age = 28;
17+
1018
// Exercise 3
19+
20+
21+
let language = "JavaScript";
22+
let createdYear = 1995;
23+
let isCaseSensitive = true;
24+
25+
26+
let price = 19.99;
27+
let isOnSale = false;
28+
let salePercentage = 15;
29+
let stock = 0;
30+
let inStock = false;
31+
let selectedSize = "M";
32+
33+
34+
let title = "Name of the Wind";
35+
let author = "Patrick Rothfuss";
36+
let pageCount = 722;
37+
let bookmark = 456;
38+
let hasRead = true;

0 commit comments

Comments
 (0)