get
    Store.prototype.get(params)
  
  Returns a single item's data from the store.
todoStore.get({id: 1}) //-> {id: 1, name: "dishes"}
  
  
  
Store.prototype.get(params)
  Returns a single item's data from the store.
todoStore.get({id: 1}) //-> {id: 1, name: "dishes"}