Skip to content

Commit 77e93fc

Browse files
fix alignment issue
1 parent adfd48c commit 77e93fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,10 @@ console.log([1, 2, 3, 4, 5]);
375375

376376
**[⬆ Back to Top](#table-of-contents)**
377377
### Write a JavaScript program to reverse a string
378-
<details><summary><b>Solution:</b></summary>
379378
<p>
379+
<details><summary><b>Solution:</b></summary>
380+
</p>
381+
380382
```javascript
381383
function reverse(str) {
382384
return str.split('').reverse().join('');

0 commit comments

Comments
 (0)