From 68eea82ff9dc8dbbc3f6cdb7c3df7ed247262a19 Mon Sep 17 00:00:00 2001 From: Melkzedek <79189172+Melkzedk@users.noreply.github.com> Date: Thu, 6 Nov 2025 08:21:02 +0300 Subject: [PATCH] Add comment for app.get() method usage Added comment to explain app.get() method. --- en/starter/hello-world.md | 1 + 1 file changed, 1 insertion(+) diff --git a/en/starter/hello-world.md b/en/starter/hello-world.md index 67c9aee082..b8759ef993 100755 --- a/en/starter/hello-world.md +++ b/en/starter/hello-world.md @@ -17,6 +17,7 @@ const express = require('express') const app = express() const port = 3000 +//app.get() is a method used to define a route that responds to HTTP GET requests. app.get('/', (req, res) => { res.send('Hello World!') })