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:
- "index.js"
- "app.js"
- "main.js"
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!
>Solution :
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.