Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.

Commit c17bff6

Browse files
author
Chris Owen
committed
Formatting
1 parent 3216276 commit c17bff6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

exercises/A-expressions/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ There are some other different types of statements that we will learn in the com
3232

3333
You quickly find out the result of an expression by running node in a terminal window.
3434

35-
* Open a terminal window
36-
* Run the command `node`
37-
* _You have now opened a node console (also called a REPL)_
38-
* Type an expression and press enter
39-
* To exit the console type Ctrl+C or type the command `.exit`
35+
- Open a terminal window
36+
- Run the command `node`
37+
- _You have now opened a node console (also called a REPL)_
38+
- Type an expression and press enter
39+
- To exit the console type Ctrl+C or type the command `.exit`
4040

4141
Example from inside a terminal window:
4242

@@ -59,8 +59,8 @@ $
5959

6060
> Notice how when we execute an expression the value it produces is printed below it. When we execute a statement, we see `undefined` printed below. This is because statements don't produce values like expressions, they _do something_.
6161
62-
* Write some more expressions in the node console
63-
* Assign some expressions to variables
64-
* Check the value of the variables
62+
- Write some more expressions in the node console
63+
- Assign some expressions to variables
64+
- Check the value of the variables
6565

6666
Further reading on using the node console: https://hackernoon.com/know-node-repl-better-dbd15bca0af6

exercises/E-conditionals/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Like humans, computer programs make decisions based on information given to them
22

33
For example:
44

5-
* In a game, if the player has 0 lives, then the game is over
6-
* In a weather app, if rain is forecast, a picture of rain clouds is shown
5+
- In a game, if the player has 0 lives, then the game is over
6+
- In a weather app, if rain is forecast, a picture of rain clouds is shown
77

88
The most common type of conditional is the **if statement**.
99

0 commit comments

Comments
 (0)