I\'m attempting to build my own for loop construct.
function loop(value, test, update, body) { if (test(value)) { body(value); return loop