Hey, I've noticed that you have a variation of sometimes using semicolons at the end of a line, and sometimes not. I would personally recommend using either always a semicolon or not at all, since the way you have it now is kinda confusing for me. For now, I've updated all your files and put semicolons behind every line that should have one.
Pro tip: This is why a linter in your code-editor can be very useful, since you can tell your linter wether you would like to use semicolons in your code (and make it give a warning when you forget to use it), or not.
Hey, I've noticed that you have a variation of sometimes using semicolons at the end of a line, and sometimes not. I would personally recommend using either always a semicolon or not at all, since the way you have it now is kinda confusing for me. For now, I've updated all your files and put semicolons behind every line that should have one.
Pro tip: This is why a linter in your code-editor can be very useful, since you can tell your linter wether you would like to use semicolons in your code (and make it give a warning when you forget to use it), or not.