Skip to content

Instantly share code, notes, and snippets.

View kjng's full-sized avatar

Kevin Jang kjng

View GitHub Profile

Introduction to Arrays

Lesson

Slides

Exercises

Basic Requirements

@kjng
kjng / fakeReact.js
Created March 4, 2017 21:55 — forked from ivtpz/fakeReact.js
Using ES6 arrow functions and higher order functions to make life easy in React components
// NOTE - this will only run with Babel preset Stage-0 (experimental features)
// Arrow functions as methods is still an experimental Babel feature
// EXAMPLE 1 - Using bind and multiple update functions
class Parent {
constructor() {
this.state = {
name: 'No name yet',
email: 'No email yet'
}
@kjng
kjng / react-native-maps-enable-google-maps-instructions.md
Created February 20, 2017 03:52 — forked from heron2014/react-native-maps-enable-google-maps-instructions.md
Visual instructions how to enable Google Maps on IOS using react-native-maps

Visual instructions how to enable Google Maps on IOS using react-native-maps

This is for my personal use, things might not be correctly explained here. For the official docs please check https://github.com/airbnb/react-native-maps

Steps from scratch:

1.react-native init GoogleMapPlayground

2. cd GoogleMapPlayground