I have a site with multiple Javascript files included. Two of the JS files have the following variable:
var $gridName
Will this cause any conflicts for me in my site? For example, will the value of $gridName
be set by the last JS file that got included or some other type of unwanted behavior?
Here is the top of one of my files, where the variable is declared:
$(function () {
var intlastRowId;
var strAppName = 'allocation-details';
var $gridName = $("#grid-allocation-details");