この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
TypeScript and Playground練習問題集更新情報
WIP
Based on: https://gist.github.com/Isaddo/7efebcb673a0957b9c6f07cd14826ea4
https://github.com/user/repo/labels
[
/** | |
* Export Github Labels | |
**************************************************** | |
* | |
* FIREFOX STEP BY STEP: | |
* 1. Open the labels manage page e.g github.com/user/repo/lebels | |
* 2. Open Scratch Pad (SHIFT + F4) | |
* 3. Paste the code below and run | |
* 4. Inspect Element > Console ( To read console log) | |
* 5. Copy it the console.log results |
declare module 'redux-act' { | |
/** | |
* Single "action" as it referenced from classic redux | |
* @typedef {{ type: string, payload: P }} Act.<P> | |
* @template P | |
*/ | |
declare export | |
type Act</*::+*/P = mixed> = { |
import React, { Component } from "react"; | |
import { Text } from "react-native"; | |
import { Provider, connect } from "react-redux"; | |
import { StackNavigator, addNavigationHelpers } from "react-navigation"; | |
import Routes from "./config/routes"; | |
import getStore from "./store"; | |
const AppNavigator = StackNavigator(Routes); |
前提: 完成していて、比較的支持を集めていて、JavaScriptを中心にした書籍 (DOM APIよりは言語を中心とした内容)
追記: JavaScriptの入門書 #jsprimerを書いている
最初からES2015で学ぶことを前提にした初心者〜中級者向けのJavaScript本がなかったので書いてる。 ES2015でJavaScriptという言語のコア部分は大きく変わったので、それを前提とした内容にする予定。