|
|
|
|
|
by paradite
1561 days ago
|
|
Since we are going pedantic here, here are 3 bugs that I found in the blogpost: 1. Node.js result is out-dated. I run on Node.js v14.15.1 hello world code below on macOS and it reported exit code 1 correctly: // testlog.js
console.log('hello world')
process.exit(0)
// bash
$ node -v
v14.15.1
$ node testlog.js > /dev/full
-bash: /dev/full: Operation not permitted
$ echo $?
1
2. Node.js is not a language. JavaScript is a language, and Node.js is a JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside a web browser.3. Missing JavaScript result in the table, which is the most popular language on GitHub: https://octoverse.github.com/#top-languages-over-the-years |
|