Skip to content

Commit 53e0377

Browse files
authored
✨🆕 Now with emojis inline!!!
1 parent 643d2e1 commit 53e0377

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@ Let's practice using `map`, `filter`, and `reduce`!
44

55
* * *
66

7-
![map filter reduce in a tweet](./map-filter-reduce.png)
7+
```js
8+
map([🌽, 🐮, 🐔], cook]
9+
=> [🍿, 🍔, 🍳]
10+
11+
filter([🍿, 🍔, 🍳], isVegetarian]
12+
=> [🍿, 🍳]
13+
14+
reduce([🍿, 🍳], eat)
15+
=> 💩
16+
```
817
918
#### Setup
1019

0 commit comments

Comments
 (0)