- Fork and clone this repository
- Run
npm installto install dependencies - Use a separate file for each exercise. This will make it easier to keep track of solutions
- It may also be beneficial to copy/paste any data structures provided
- Write JavaScript code to obtain the data prompted by each question
- Run each file by typing
node js/nameOfFile.js - Run
npm run lint:jsto style check your code
Write a program that will print the letter grade, given a variable with a test score. Display either "A", "B", "C", "D", or "F", for an score that is an integer between 0 and 100.
Requirements
- Your program should have a variable to store the letter grade (an integer between 0 and 100)
- For the letter grades, you may use whatever grading scale you like
- You must use a switch statement (hint, you may need to review and think about how the
switchstatement works)
Write a program that takes an input like...
var thing = 'cat';
var count = '5';and output the pluralized form of the word, depending on what count is. For example, "5 cats" or "1 dog".
Requirements
- Your program should pluralize the word based on an integer (
count)
Write a program that converts a temperature from Fahrenheit to Celsius.
Requirements
- Your program should take an integer (in Fahrenheit) and convert the temperature to Celsius.
- The output of the program should read: "X degrees Fahrenheit is Y degrees Celsius"
- All content is licensed under a CC-BY-NC-SA 4.0 license.
- All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.