Giter Site home page Giter Site logo

twilio-javascript-folder's People

Contributors

bahburs avatar

Watchers

 avatar

twilio-javascript-folder's Issues

Week 1

FizzBuzz In SPACE

For this assignment, you will follow the instructions and complete a task showing your knowledge of the subject at the end. If at any moment you need help, feel free to contact your TAs.

โœˆ๏ธ Starting off

Create a file called fizzbuzz.js

FizzBuzz

FizzBuzz is a program used to demonstrate basic functionality of a language, often when switching between programing languages or as an introduction (that's us!) to first learning a language.

The goals of the program is to go through the numbers from 1 to 100 and print "fizz" whenever a number is divisible by 3, print "buzz" when it's divisible by 5, print "fizzbuzz" when it's divisible by both 3 and 5, and print the number when it's not divisible by either. For our program, you will do something very similar:

For the numbers from 1 to 100:

  • print ๐Ÿ‘ฝ and the number if it is divisible by 3
  • print ๐Ÿš€ and the number if it is divisible by 5
  • print ๐Ÿ›ฐ and the number if it is divisible by both 3 and 5
  • print ๐Ÿ’ฉ and the number if it is not divisible by either 3 or 5

Tip: copy paste the emojis to get it into your code!

Help:

๐Ÿ“ Commenting your Code

Use in line comments to explain how your code works. Commenting your code helps ensure that you understand what is happening, and helps the code reviewer read through your code easily. For example:

Great example:

var i; // Initialize a variable
for (i = 0; i < nums.length; i++) { // Initialize a for loop that iterates from 0 to length of the nums array
  nums[i]+5; // At every iteration, add the i-th integer in the nums array to the text variable
} // End of loop

When you start writing more code (200+ lines) you will want to do the next example. For this course, your code should not extend past 50-100 lines and we want to use your comments to see how well you understand the concepts and language, so it's better to use the previous example.

Okay example:

// This code uses a for loop to iterate through the entire nums array and add 5 to each element
var i;
for (i = 0; i < nums.length; i++) {
  nums[i]+5;
}

Don't do this:

// Add 5 to all values in nums array
var i;
for (i = 0; i < nums.length; i++) {
  nums[i]+5;
}

๐Ÿš— Running your Code

  1. Save your file
  2. Make sure you're in the same directory in which you saved your fizzbuzz.js file

In this program, you need to allow your program to take a second argument, so:
3. To run your fancy new program, type: node fizzbuzz.js with an integer between 1-100 in terminal

โœ๏ธ Testing

To test your code, run it with different integers in the program argument to see what happens.

Test Case 1:

If you run node fizzbuzz.js 5 the output should be:

๐Ÿ’ฉ 1
๐Ÿ’ฉ 2
๐Ÿ‘ฝ 3
๐Ÿ’ฉ 4
๐Ÿš€ 5

Test Case 2:

If you run node fizzbuzz.js 17 the output should be:

๐Ÿ’ฉ 1
๐Ÿ’ฉ 2
๐Ÿ‘ฝ 3
๐Ÿ’ฉ 4
๐Ÿš€ 5
๐Ÿ‘ฝ 6
๐Ÿ’ฉ 7
๐Ÿ’ฉ 8
๐Ÿ‘ฝ 9
๐Ÿš€ 10
๐Ÿ’ฉ 11
๐Ÿ‘ฝ 12
๐Ÿ’ฉ 13
๐Ÿ’ฉ 14
๐Ÿ›ฐ 15
๐Ÿ’ฉ 16
๐Ÿ’ฉ 17

Output example:

โœ… Submit

Task 1: Complete the FizzBuzz program as described above

Commit a file called fizzbuzz.js

Good job, you're fizzing and buzzing in space!

Week 0

Welcome to Bit Project's Github Learning Lab on JavaScript.

This Learning Lab is going to teach you some of the fundamental coding skills you will need to start building awesome Javascript projects ๐Ÿš€

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.