I'm reformatting a plug-in so that it passes JSLint. Plug-in uses trailing underscores to name local variables, like so:
var __slice = [].slice,
__indexOf = [].indexOf
JSLint does not like this. What's another easily recognisable convention for naming these, that JSLint won't object to?