mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

ほいほい

$ cat index.js
new Promise((resolve, reject) => {
resolve("最初わよ")
}).then(
result => {
console.log("first result: " + result)
return("2番目わよ")
}
).then(
result => console.log("second result: " + result)
).catch(
err => console.error("error: " + err)
)
$ node index.js
first result: 最初わよ
second result: 2番目わよ