Excerpts from this discussion: https://news.ycombinator.com/item?id=12818016
Take this strawman for instance, how could you find the bug in the following code without the accompanying comment?
// Print every other line of the array to the console
for (var i = 0; i < myStringArray.length; i++) {
console.log(myStringArray[i]);
}