``` js var store = new Store({ title: 'hello', items: ['hello', 'world'] }) var items = store.select('items'); items.set(0, 'foo'); ``` `select` return a datastore from a key.
selectreturn a datastore from a key.