Skip to content

Instantly share code, notes, and snippets.

@defields923
defields923 / jsbin.fuqawu.js
Last active December 4, 2016 06:03 — forked from anonymous/index.html
LoopingLooping studies// source https://jsbin.com/fuqawu
// -----Loops----- //
/* For loops are great tools for iterating over individual elements within an array
to work with them. A for loop has three sections within its proceeding parentheses: an
initialization, conditional statement, and a final expression. The initialization phase
usually declares a variable. The conditional statement phase tells the loop when to stop,
and the final expression performs an action at the end, usually incrementing or
decrementing a counter: */
"use strict";