Skip to content

Commit 68eea82

Browse files
authored
Add comment for app.get() method usage
Added comment to explain app.get() method.
1 parent 738f860 commit 68eea82

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

en/starter/hello-world.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const express = require('express')
1717
const app = express()
1818
const port = 3000
1919

20+
//app.get() is a method used to define a route that responds to HTTP GET requests.
2021
app.get('/', (req, res) => {
2122
res.send('Hello World!')
2223
})

0 commit comments

Comments
 (0)