Skip to content

Instantly share code, notes, and snippets.

@luomichelle
luomichelle / for, while, and dowhile
Created May 16, 2016 21:18
for, while, and dowhile
// example of for,while, and do/while//
var soloLoop = function(){
while(soloLoop){
console.log("Looped once!");
soloLoop = false
};}
//-------------------------------
var getToDaChoppa = function(){
do {
console.log("Maria Get to da choppa")