Skip to content

Commit

Permalink
Updated source-code/index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 23, 2024
1 parent b4c0641 commit db27fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source-code/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
const msg = 'Hello Node!\n'
const msg = 'Hello World!!\n'
res.end(msg);
});

Expand Down

0 comments on commit db27fae

Please sign in to comment.