Skip to content

Instantly share code, notes, and snippets.

View xtina-starr's full-sized avatar

Christina xtina-starr

View GitHub Profile

##Christina Thompson##

cthompsonms@gmail.com
305-801-6561


###Education### Ada Developers Academy, Web Development - October 2014
Barry University, M.S. Sport Management - May 2012

var christina = 100;
for (var i = 1; i <= christina; i++) {
if (i % 3 === 0 && i % 5 === 0)
{
console.log("FizzBuzz");
}
else if(i % 3 === 0)
{
console.log("Fizz");
}