I checked out a github project recently, and I found the following code in one of the files:
var fu = $('#fileupload').data('blueimpFileupload'),
template;
It seems like this is assigning one variable to two values. What is it actually doing? Someone in my office mentioned that it may be the equivalent of just saying:
var f = $('#some-id').data('string');
var template;
Is this the case?