Aug 23, 2017 · 1 min read
Excellent. Very well written and illustrated. So if I understand recursion, my response for reading through this article and giving a clap should be like below?
function keep_reading(post) {
for (line in post) {
if (line.is_not_ended()} {
keep_reading(post);
} else if (line.is_ended()) {
Medium.Icon(“Clap!”) } } }
