1
0
Fork 0

Video 94: Promise Chaining Challenge

This commit is contained in:
JayWll 2020-02-23 16:03:48 -07:00
parent 6f0cc2fdaa
commit 935b79740f
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
require('../src/db/mongoose')
const Task = require('../src/models/task')
Task.findByIdAndDelete('5e52f573b7d229017fe21321').then((task) => {
console.log(task)
return Task.countDocuments({ completed: false })
}).then((result) => {
console.log(result)
}).catch((e) => {
console.log(e)
})