JSFiddle - React, Tailwind, and code Playground
by Eric Howe
HTML
<div id="out"></div>
CoffeeScript
refresh_loop = (refresh_rate) ->
console.log(refresh_rate)
$('#out').append('<p>pancakes</p>')
setTimeout((-> refresh_loop(refresh_rate)), refresh_rate)
refresh_rate = 1000
setTimeout((-> refresh_loop(refresh_rate)), refresh_rate)