technic404

Results 3 issues of technic404

I'm using Raspberry Pi 4B. code: ```js var five = require("johnny-five"); var board = new five.Board(); board.on("ready", function() { console.log('Ready!'); }); ``` Error: ``` internal/deps/acorn/acorn/dist/acorn.js:4015 (ch >= 0x41 /* A...

When firstly executed `node index.mjs` with the sample code for node.js, provided error occurs: ```js node:internal/process/promises:288 triggerUncaughtException(err, true /* fromPromise */); ^ [Error: ENOENT: no such file or directory, rename...

We want to pass a key to an object that is assigned to variable. Instead of doing ```js const key = "b"; const obj = { a: 1 }; obj[key]...