I\'m trying to get this to work:
function whatever(arg) { eval(arg) + \'_group\' = []; }
The purpose is to have only 1 function instead h
Although you really shouldn't use eval this should help
eval(arg + '_group') = [];