This commit is contained in:
RainSun 2020-04-04 08:48:46 +08:00
parent b0c33406ac
commit 6e45a9a8fa
2 changed files with 18 additions and 12 deletions

View File

@ -55,9 +55,9 @@ db.createUser(
)
db.createUser(
{
user: "yg",
pwd: "zV1pL8sP4nQ1",
roles: [ { role: "dbOwner", db: "yg" }]
user: "coc",
pwd: "qlSfefSor5",
roles: [ { role: "dbOwner", db: "coc" }]
}
)
```

View File

@ -1,9 +1,15 @@
class MyCoolArray extends Array {
first() { return this[0] }
last() { return this[this.length - 1] }
}
b = [1, 2, 3]
a = new MyCoolArray(...b)
console.log(a.first())
console.log(a[2])
console.log(b[-1])
setTimeout(() => console.log('a'));
Promise.resolve()
.then(
() => {
console.log('b');
}
).then(
() => Promise.resolve('c').then(
(data) => {
setTimeout(() => console.log('d'));
console.log('f');
return data;
}
)
).then(data => console.log(data));