I have just started writing my own JavaScript Framework (just for the learning experience), and have prefixed some private members with a _, like such:
var _isFireBugEnabled = function () {
return (window.console && window.console.firebug);
};
When I ran my code against Crockford's JSLint (as always), with Recommended Options
on, I was told about not using a _ as an identifier.
My question is, Why does JSLint warn me as regards not using a _ as an identifier?
Are there some side effects or implications I am missing here?
PS. As far as I could scan just now, this is not documented in the book