August 2017
Beginner
374 pages
10h 41m
English
Let's start with the application state for users. Every user has a unique username and a full name. This means that a single user object could look like this:
{
username: 'dan',
realname: 'Daniel Bugl'
}
In our application state, we have an array of these objects. In the other parts of the state, we reference users by their unique username.
Read now
Unlock full access