Skip to content

Instantly share code, notes, and snippets.

@dannyoceanxo
Created March 21, 2017 02:57
Show Gist options
  • Save dannyoceanxo/02b108aca10dd9e5e08d4b57d40af0b0 to your computer and use it in GitHub Desktop.
Save dannyoceanxo/02b108aca10dd9e5e08d4b57d40af0b0 to your computer and use it in GitHub Desktop.

Revisions

  1. dannyoceanxo created this gist Mar 21, 2017.
    17 changes: 17 additions & 0 deletions fizzbuzz.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    I like the idea of Javascript because interactive webpages are really the only ones I use anymore. Instagram, reddit, youtube. Everything requires some degree of user input and we've moved well past the age of simply scanning for information. I now input credit card info, phone numbers, and email addresses all the time. My goal in web development is to make things I'd actually like to use. I can't count the number of times I've checked someone's website for relevant information or a good user experience and come away thinking that I'm taking my money elsewhere. I was looking for a particular type of business in St. Pete and found that 3 of them were using literally identical templates. My end goal is to help those people adopt a website that doesn't make someone's eyes bleed.




    ```javascript for( let i = 1; i <= 100; i ++){
    if ( i % 15 == 0){
    console.log('FizzBuzz')
    }else if (i % 3 ==0){
    console.log('Fizz')
    }else if (i % 5 ==0){
    console.log('Buzz')
    }else {
    console.log(i);
    }
    }
    ```