top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between .js and .min.js?

+1 vote
476 views
What is the difference between .js and .min.js?
posted Jul 3, 2015 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

.min.js is the minified version of the javascript i.e. .js

When .min.js is used
It is primarily used while the website is being launched in order to reduce the load for the particular website.

What .min.js contain
All the long variable names and function names are converted into shorter ones during the process of minifying. As consequence it would reduce the size of that particular file, so it would less the loading speed of the website.

answer Jul 3, 2015 by Salil Agrawal
...