Recently I've started to learn some information about .hta files, which can build a basic apps without using a browser (because I'm using only pure javascript and need to get all powers of the processor and RAM to calculate some big data).
So, when I'm trying to open an .hta app it says me:
An error has occurred in the script on this page
Line: 69
Char: 13
Error: Expected ";" Code: 0
There is what I have on this line:
for (let i = 0; i < 10000; i++) {
And it's not a first page with the same code and same error.
Some useful information:
- Yes, I have HTA:APPLICATION in the head tag.
- The script is located in the end of the body tag.
- All HTML and CSS code inside were successfully loaded.
- I made an .hta file by 2 ways: with 'Save As' in Sublime Text 3 and easily by changing it's extension in the path (using Windows 10).