We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f50fec6 commit 1b27f09Copy full SHA for 1b27f09
doc/api/process.md
@@ -2445,13 +2445,16 @@ added: v0.1.3
2445
2446
* {string}
2447
2448
-The `process.version` property returns the Node.js version string in the form of
2449
-`v<major>.<minor>.<patch>`.
+The `process.version` property contains the Node.js version string.
2450
2451
```js
2452
console.log(`Version: ${process.version}`);
+// Version: v14.8.0
2453
```
2454
2455
+To get the version string without the prepended _v_, use
2456
+`process.versions.node`.
2457
+
2458
## `process.versions`
2459
<!-- YAML
2460
added: v0.2.0
0 commit comments