Musab Gulfam
Musab Gulfam

Reputation: 173

What is the meaning of a period in between of a file name of a JavaScript file?

I came across a filename "Signin.screen.js", what is the meaning/role of the first period in the filename?

Upvotes: 1

Views: 171

Answers (1)

JemWritesCode
JemWritesCode

Reputation: 521

Most likely it's just to make it easier to read the file names because of how they're organized in that particular project. Like "hey everything here is used for this screen"

You can use Find in Files to look for any code that uses "screen.js" but it's most likely not being used in the code.

Upvotes: 2

Related Questions