how to know which javascript version in my NODEJS?
问题 I want to know which javascript version is my NodeJS is supporting ? 回答1: Use process.versions. From that page in the documentation: console.log(process.versions); outputs { node: '0.4.12', v8: '3.1.8.26', ares: '1.7.4', ev: '4.4', openssl: '1.0.0e-fips' } EDIT : V8 uses the ECMAScript as specified in ECMA-262, 5th edition . Reference: http://code.google.com/p/v8/ 回答2: According to its documentation, this command could be used; node -p process.versions.v8 回答3: Not trying to necropost, here --