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

Commit 33c64ce

Browse files
committed
update
1 parent 04fefc9 commit 33c64ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codewars/create-phone-number.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Don't forget the space after the closing parenthese!
1212

1313
#Best practice
1414

15-
**First:*
15+
**First:**
1616
```
1717
function createPhoneNumber(numbers){
1818
var format = "(xxx) xxx-xxxx";
@@ -26,7 +26,7 @@ function createPhoneNumber(numbers){
2626
}
2727
```
2828

29-
**Second:*
29+
**Second:**
3030
```
3131
function createPhoneNumber(numbers){
3232
return numbers.join('').replace(/(...)(...)(.*)/, '($1) $2-$3');

0 commit comments

Comments
 (0)