Fixed declarations without initial value

This commit is contained in:
2024-10-13 15:18:48 +11:00
parent 80734563b9
commit a51c5591ee
3 changed files with 51 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
//declare a variable
var foobar = 42;
//defaults as null
var empty;