I want a variable that would be the exact same for everyone. Reason I want this is because I want a download count that people can see. For every download, the download count goes up.
How would I do like this?
var downloadCount = "";
function addDownloadCount() {
'use strict';
downloadCount = downloadCount + 1;
}