Skip to content

Instantly share code, notes, and snippets.

@yuheiy
yuheiy / 0_reuse_code.js
Created December 6, 2016 09:44
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@yuheiy
yuheiy / react.js
Created June 22, 2016 14:24 — forked from azu/react.js
React Componentのライフサイクル。DOMをアップデートするケース
/*
React Componentのライフサイクル
- setState - componentWillReceiveProps
- かならずimmutableなsetStateにする
- 複数回の更新時は間引かれるので、++のようなインクリメントな処理はしない
- DOMから情報取得 - componentWillUpdate
- DOMの位置を変更 - componentDidUpdate
をそれぞれ書く場所が決まってる