August 2017
Beginner
374 pages
10h 41m
English
A pure counter function would look like this:
function counter (i) { return i + 1}
With the same input, it will always return the same output:
If we want to count, we will need to call the counter function multiple times or pass the result of a previous call to counter() to it:
Read now
Unlock full access