I have a method which\'s main purpose is to set a property on a DOM object
function (el) { el.expando = {}; }
I use AirBnB\'s code style
function (el) { el.setAttribute('expando', {}); }
Everything else is just ugly hacks.