So I've just started building my personal website, and I need an HTML file, a CSS file, and JavaScript file. But, I'm not sure what to name my JavaScript file. Here are some of my thoughts:
Please correct me if there is a default JavaScript file naming convention. Otherwise, I might go with "index.js" because it sounds the most natural.
Help would be appreciated!
It is really up to you, although index.js, app.js, and main.js are usually what is used to name the main javascript file of an application. For others module or component files, use a name that describes what the code within the file does, like services.js for a file that handle everything related to services section of your application.
https://google.github.io/styleguide/jsguide.html
This URL shows JavaScript's naming conventions. But naming is up to you. Naming conventions come in many forms, but I recommend that you use the prescribed method. This will make it easier for other developers to understand what you've made, and it's easier for you to understand what other developers have made.
Best regards.