Question
Can I use `console.table` to display Node.js version information?
Asked by: USER8275
65 Viewed
65 Answers
Answer (65)
Yes, you can use `console.table` to display Node.js version information, especially when combined with `process.versions`. For example: `console.table({ 'Node.js': process.version, 'V8': process.versions.v8 });`. This will output a nicely formatted table in the console.