Skip to content
This repository was archived by the owner on Oct 26, 2020. It is now read-only.

Commit 2b9cb71

Browse files
committed
Update reading list
1 parent 8d5235d commit 2b9cb71

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

week-1/1-exercises/L-functions-nested/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Functions are very powerful.
22

3-
* You can write more than one line of code inside of functions.
4-
* You can use variables inside of functions.
5-
* You can call other functions inside of functions!
3+
- You can write more than one line of code inside of functions.
4+
- You can use variables inside of functions.
5+
- You can call other functions inside of functions!
66

77
```js
88
function getAgeInDays(age) {
@@ -19,9 +19,9 @@ function createCreeting(name, age) {
1919

2020
## Exercise 1
2121

22-
* In `exercise.js` write a program that displays the percentage of students and mentors in the group
23-
* The percentage should be rounded to the nearest whole number (use a search engine to find out how to this with JavaScript)
24-
* You should have one function that calculates the percentage, and one function that creates a message
22+
- In `exercise.js` write a program that displays the percentage of students and mentors in the group
23+
- The percentage should be rounded to the nearest whole number (use a search engine to find out how to this with JavaScript)
24+
- You should have one function that calculates the percentage, and one function that creates a message
2525

2626
> Consider: should your percentage function do the rounding, or should it be done when the greeting is created?
2727
@@ -34,9 +34,9 @@ Percentage mentors: 35%
3434

3535
## Exercise 2
3636

37-
* In `exercise2.js` you have been provided with the names of some mentors. Write a program that logs a shouty greeting to each one.
38-
* Your program should include a function that spells their name in uppercase, and a function that creates a shouty greeting.
39-
* Log each greeting to the console.
37+
- In `exercise2.js` you have been provided with the names of some mentors. Write a program that logs a shouty greeting to each one.
38+
- Your program should include a function that spells their name in uppercase, and a function that creates a shouty greeting.
39+
- Log each greeting to the console.
4040

4141
## Expected result
4242

File renamed without changes.

0 commit comments

Comments
 (0)