Skip to content

Instantly share code, notes, and snippets.

@dannyoceanxo
Created March 21, 2017 02:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dannyoceanxo/02b108aca10dd9e5e08d4b57d40af0b0 to your computer and use it in GitHub Desktop.
Save dannyoceanxo/02b108aca10dd9e5e08d4b57d40af0b0 to your computer and use it in GitHub Desktop.

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.

  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);
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment