Сообщение от winzza
|
но переприсваевает typeButton
|
Как вариант...
var typeButton = {
'type1': 1,
'type2': 2,
'type3': 3
};
var actionByTypeButton = [];
actionByTypeButton[typeButton['type1']] = 'aaa';
actionByTypeButton[typeButton['type2']] = 'bbb';
actionByTypeButton[typeButton['type3']] = 'ccc';
alert(actionByTypeButton);
Но массив получается без нулевого элемента...