anyone21/twilio-javascript-folder

Week 1

Opened this issue ยท 0 comments

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!