wiki/content/20201030094749-javascript_comments.md

17 lines
226 B
Markdown
Raw Permalink Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-10-30
2024-05-06 20:40:05 +00:00
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
```