Skip to content

Commit

Permalink
adds exercises
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlhlee committed Jun 12, 2019
1 parent 9bff7dd commit 9064f34
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 1 deletion.
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
# cohort29_vc
# cohort29_vc

**DO NOT FORK this repo.**

**I repeat DO NOT FORK this repo**

## Please accept the invitation to be a contributor for this special mission.

1. **CLONE** this repository from your personal Github account:
- Copy the HTTPS or SSH address on the page.
- From you DevLeague folder, run the command `$ git clone [SSH or HTTP address]` in your terminal in order to clone this repository into that folder
(you don't need to type the "$"; this is the command __prompt__, and is used to signify your terminal is ready for commands).

2. From your terminal, navigate into the the assignment:
- `$ cd cohort29_vc`

3. Create a new branch for the project:

- `$ git branch your-branch-name`
or
- `$ git checkout -b your-branch-name`

4. To see which mission you've been assigned to, you must get the updates from the master file.

- `$ git fetch`
- `$ git pull`

5. Checkout into your own branch and MERGE the updates from the master branch into your newly created branch:
- `$ git merge master`

Work on your respective mission in the `mission.js` file

6. Test your work. Commit and push your code when complete.

7. Make a pull request.
42 changes: 42 additions & 0 deletions mission.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
//Mission 1:
//Declare a variable named zippys and assign it an array of 5 items sold at Zippys Restaurant.

//Mission 2:
//Declare a variable named giraffe and assign it an object with 5 key value pairs of your choosing.

//Mission 3:
//Declare a variable named bank and assign to your favorite Hawaii bank.

//Mission 4:
//Declare a variable named price and assign the cost of a chicken katsu plate lunch from L&L Drive Inn.

//Mission 5:
//Declare a variable named weather and assign it tomorrow's weather forecast.

//Mission 6:
//Declare a variable named country and assign it an array of 3 countries that you've visited (or want to visit).

//Mission 7:
//Declare a variable named greeting and assign it to a Russian greeting for 'hello world'.

//Mission 8:
//Declare a variable named candyWrapper and assign it to a candy bar that has orange in its wrapper

//Mission 9:
//Declare a variable named beach and assign it to the number of beaches on Oahu.

//Mission 10:
//Declare a variable named middleName and assign it to the middle name of the person sitting next to you.

//Mission 11:
//Declare a variable named kicks and assign it to the brand of shoes that you are currently wearing.

//Mission 12:
//Declare a variable named chips and assign it to the potato chips that are currently on sale at Longs Drugs.

//Mission 13:
//Declare a variable named cheeseCake and assign it to the number of cheese cake flavors that CheeseCake Factory offers.

//Mission 14:
//Declare a variable named ronald and assign it to the number McDonald's restaurants in Hawaii.

0 comments on commit 9064f34

Please sign in to comment.