From fd97f8593e33aaa9af01edc10ac76f8ea9ae18f9 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 --- 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 7584c886adadac..818f9a527904e1 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -2498,7 +2498,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}`);