reorganizing some more

This commit is contained in:
brightboost
2021-12-01 14:39:18 +01:00
parent f8bde27fc6
commit 9116b55477
37 changed files with 998 additions and 679 deletions
+10
View File
@@ -0,0 +1,10 @@
let firstname = "Maria";
firstname = "Jacky";
let nr1 = 12;
var nr2 = 8;
const pi = 3.14159;
// throws a TypeError
const someConstant = 3;
someConstant = 4;