Skip to content

Commit 54f096d

Browse files
author
juanantonioledesma
committed
Add "Multiply" kata
1 parent 910751f commit 54f096d

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

8-kyu/multiply.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<h1>Multiply <sup><sup>8 Kyu</sup></sup></h1>
2+
3+
<sup>
4+
<a href="https://www.codewars.com/kata/50654ddff44f800200000004">
5+
<strong>LINK TO THE KATA</strong>
6+
</a> - <code>DEBUGGING</code> <code>FUNDAMENTALS</code>
7+
</sup>
8+
9+
## Description
10+
11+
This code does not execute properly. Try to figure out why.
12+
13+
## Solution
14+
15+
```javascript
16+
const multiply = (a, b) => a * b
17+
```

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,6 @@ JavaScript katas on Codewars are programming challenges that help you improve yo
6868

6969
## 8 kyu
7070

71+
- **[Multiply](./8-kyu/multiply.md)**
7172
- **[Object Oriented Piracy](./8-kyu/object-oriented-piracy.md)**
7273
- **[Opposites Attract](./8-kyu/opposites-attract.md)**

0 commit comments

Comments
 (0)