mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
16 lines
209 B
Markdown
16 lines
209 B
Markdown
|
---
|
||
|
id: 8b7b6ab5-edd5-40d2-85eb-1039b9f3b8be
|
||
|
title: JavaScript Comments
|
||
|
---
|
||
|
|
||
|
``` javascript
|
||
|
// This is a one line comment
|
||
|
let i = 0
|
||
|
|
||
|
/**
|
||
|
This is a multi line comment
|
||
|
Here is the second line
|
||
|
*/
|
||
|
let j = 0
|
||
|
```
|