loop test
by Joseph Tate
HTML
<p>Using JavaScript, without jQuery, add 1 to each number in the provided array and log each result of the addition to the browser's console.</p>
JavaScript
var numbers = [1, 2, 3, 4, 5];
by Joseph Tate
<p>Using JavaScript, without jQuery, add 1 to each number in the provided array and log each result of the addition to the browser's console.</p>
var numbers = [1, 2, 3, 4, 5];