**Description** Add `[index]` syntax to query, with index being the index of the array. **Examples** ```js Store.get('user.roles[0]'); // First element of roles array Store.get('user.roles[-1]'); // Last element of roles array ``` **Specification** This will get the index value from an array.
Description
Add
[index]syntax to query, with index being the index of the array.Examples
Specification
This will get the index value from an array.