Andrew Boyton

Results 2 issues of Andrew Boyton

It's a somewhat common pattern to have an `if` statement being the only thing in a `forEach` loop. ``` js numbers.forEach(number => { if(number % 2 === 0) { console.log(number);...

enhancement

Minor grammatical fixes