From 26b060f4cd3bc84703d20bf5ed9c3816973d32d5 Mon Sep 17 00:00:00 2001 From: Danny Guo Date: Fri, 21 Aug 2020 21:53:20 -0400 Subject: [PATCH] doc: indicate the format of process.version PR-URL: https://github.com/nodejs/node/pull/34872 Reviewed-By: Richard Lau Reviewed-By: Rich Trott --- doc/api/process.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 44c143222f00c6..7cbc1594d6b98c 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -2445,7 +2445,8 @@ added: v0.1.3 * {string} -The `process.version` property returns the Node.js version string. +The `process.version` property returns the Node.js version string in the form of +`v..`. ```js console.log(`Version: ${process.version}`);