Hello, world!
Paragraph
Inline code
const x = 0
Full code
const x = 1
const y = 2
console.log(x + y)
Table
Word | Mean |
---|---|
var | Variable |
const | Constant |
let | Letting |
Code with note
let name = 'String'
Can be use with double-quote instead
Subtitle
Hello, world!
const x = 0
const x = 1
const y = 2
console.log(x + y)
Word | Mean |
---|---|
var | Variable |
const | Constant |
let | Letting |
let name = 'String'
Can be use with double-quote instead