Hey guys!
I'm a total newbie.
I'm used to Delphi / Lazarus - GUI-Programming. There freeing of assigned resources is a must if not done automatically.
What I mean is:
MyStringList:=TStringList.Create;
...do something...
FreeAndNil(MyStringList);
Now as everything is transpiled to JS: is there ANY necessity to have to care about freeing anything?
I mean: the user can just close the Browser - will the Browser take care of cleaning everything up and leaves no leaks?
Kind regards,
Horst