Skip to content

Instantly share code, notes, and snippets.

@aredridel
aredridel / Async Code Katas I.md
Created March 17, 2014 05:09
Asynchronous Code Katas for Javascript

Asynchronous Javascript Code Katas

Part 1: Simple values, sequential flow

Write a synchronous get function and set function. Get a value, set a value, get again.

function makeThing() {
	var val = 0;
	return {