Hi, I'm localizing a menu and I want to assign a declared array to an object property in that way:
var menuListLocal=["Home","Play","Options","Exit"];
var menu_Controller={
_menuList: menuListLocal,
// .... //
}
Sorry if it is too obvious.
Thanks.