- from the master branch create a feature branch called
feat1
git checkout master
->git checkout -b feat1
git add .
git commit
Overview taken from HERE
just extending HTTP/1 not replacing anything
We will be building a Tabs UI, similar to Bootstrap Tabs
vote_average
returned by the API. (Low, Average, High)
id
, vote_average
, and release_date
date propertiesnode -v
v8.9.1
then continue to setp 3.npm i -g bower
<div class="test">test div</div> | |
<div class="test-2">test div</div> |
List() | |
var list = Immutable.List([1,2,3]) | |
// [1, 2, 3] | |
List.isList() | |
Immutable.List.isList(list) | |
// true | |
List.of() | |
var list = Immutable.List.of(1,2,3); |
const { store } = this.props
Assigning a constant like this to the object on the right side will pull out the value for the key that has the same name as the variable (in this case store) and assigns it to the store variable. It's the equivalent to below syntax
const store = this.props.store
"this" allows us as the developer to use an objects context when calling a function. You can choose which object you would like to call a function with, even if that object does not have the function as one of it's properties.
Example: If there is one common function you have, like sayHello you want that function to work with many objects that have similar properties.
var personOne = {
name: "Bob",
age: 35,