Skip to content

davified/js-control-flow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JS Control Flow

Getting Started

  • Fork and clone this repository
  • Write JavaScript code to obtain the data prompted by each question
  • The code for each exercise should be placed in separate .js files (see the js folder). This will make it easier to keep track of solutions
    • It may also be beneficial to copy/paste any data structures provided
  • Run each file by typing node js/nameOfFile.js

reverse.js

Write a program that will take a hardcoded string, and console log the reversed version of it.

Requirements

  • You must use a for loop. No .reverse()
  • You may use the string below
var inputString = 'building';

filterLongWords.js

Write a program that will take an array of words. Using a variable called maxLength, push words that are less than the maxLength into a new array, and console.log the value of maxLength.

Requirements

  • Your array of words should be stored in a variable, which can be named whatever you like
  • maxLength should be a positive number

grade.js

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 switch statement works)

Licensing

  1. All content is licensed under a CC-BY-NC-SA 4.0 license.
  2. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact legal@ga.co.

About

[javascript, problem-solving]

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published