Skip to content

RiaClay/JavaScript-I

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript I

This project is designed to get you used to working with all of the concepts we cover during the first 2 days of JavaScript Fundamentals week.

Project initialization

  • Fork and Clone this repository and cd into it.
  • Run the command npm i to install needed node packages.
  • JUST a reminder this command runs a script on your machine based on the package.json file you have installed in your project. By running this command, you're telling your project to head over to npm.org and download all of the packages you need for this project.

    Instructions

  • This project is designed to carry over from JavaScript I through JavaScript II.
  • Please complete the project files in this order: callbacks.js arrays.js objects.js and finally closure.js.
  • In each project file you'll see a series of problems to work through,.
  • When you feel like you've completed the problem, be sure to run, npm test <file name> to get see if your code works properly... and to check if you have any linting errors.
  • Work until you have all of the tests passing.

Running the tests

Example:

npm test arrays

-> executes all of the tests in the `src/tests/arrays.tests.js file`

npm test closure
-> executes all of the tests in the `src/tests/closure.tests.js file`

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%