var o=Test() alert(o.type) alert(o.arr[4]) function Test() { var a=[1,2,3,4,5] return {type: true, arr: a} }