Skip to content

Alhassan-KIG/js-fundamentals-control-flow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Programming Fundamentals: Conditional Flow

Learning Objectives

  • Use conditional statements to control the logical flow of an application

Setup

  • Fork this repository and clone your forked version to your machine

  • Install dependencies by running the command below while in the project's root directory:

    npm ci

Instructions

  • Read through the numbered comments in the following files to understand the requirements of this exercise.

    • src/boolean-conditions.js
    • src/numeric-conditions.js
    • src/string-conditions.js
    • src/multiple-conditions.js
  • Write your code directly below the numbered comment.

  • Add console.log()s to get visibility on your solution and run the file with the command node src/<file>.js etc

  • See src/example.js for some examples

Running tests

  • To verify your solutions, run the test suite by running the npx jasmine command followed by the path to the corresponding test file for each src/*.js file above, eg:

    npx jasmine spec/boolean-conditions.spec.js

  • Alternatively, run:

    npm test

  • To begin with, almost all of the tests will fail - example tests, if they exist, will pass with a green . You'll see a number of red Fs in your console (possibly many), similar to the image below:

  • Your solution is complete when the all the red Fs have been replaced with green .s in your console, as shown below:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.4%
  • Shell 0.6%