From fb7136e1b03b937a0a983c4ba4a66c5a993b0e83 Mon Sep 17 00:00:00 2001 From: Shizan Shaikh <51877872+therealshizan@users.noreply.github.com> Date: Sat, 11 May 2024 04:07:27 +0530 Subject: [PATCH] Update index.md of 'Printing output' in NodeJs Roadmap (#5287) * Update index.md of 'Printing output' in NodeJs Roadmap Update index.md of 'Printing output' in NodeJs Roadmap * Update src/data/roadmaps/nodejs/content/106-nodejs-command-line-apps/101-printing-output/index.md --------- Co-authored-by: Kamran Ahmed --- .../106-nodejs-command-line-apps/101-printing-output/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/data/roadmaps/nodejs/content/106-nodejs-command-line-apps/101-printing-output/index.md b/src/data/roadmaps/nodejs/content/106-nodejs-command-line-apps/101-printing-output/index.md index 4c34eafd1..3c4de31eb 100644 --- a/src/data/roadmaps/nodejs/content/106-nodejs-command-line-apps/101-printing-output/index.md +++ b/src/data/roadmaps/nodejs/content/106-nodejs-command-line-apps/101-printing-output/index.md @@ -1 +1,3 @@ # Printing output + +Printing output in Node.js command-line applications is a fundamental aspect of communicating with users and displaying information. You can print output using `process.stdout`, `process.stderr` or simple `console.*` functions.