Become a member
Sign in
Ben Yorke
Ben Yorke

Ben Yorke

81 Following
35 Followers
·
  • Profile
  • Claps

Latest

Ben Yorke
Ben Yorke
May 18, 2016 · 5 min read

0 to Clojure in less than 10 lines of code

One of my New Year’s Resolutions this year was to learn a functional programming language. After much deliberation, I decided to start with Clojure/ClojureScript, mostly because of the latter’s great interoperability with JavaScript. Fast forward a few…

8

Ben Yorke
Ben Yorke
Jan 5, 2016 · 3 min read

Binding methods with React

Why you shouldn’t bind your event handler’s in render, and where you should bind them instead.

One of the most common things I see in React codebases is binding event handlers in the render calls. It’s not surprising when React’s docs in fact use this…