## Feature Request Unpack Objects. This already works for arrays. ## Example Unpack `foo[42]` into `"hello world"`. ```js var foo = {42: "hello world"}; console.log(foo[42]); ``` ## Expected Result ```js console.log("hello world"); ```