Skip to content
js
;(async () => {
  try {
    const res = await Student.findById('6301aa0f401ca97e3f1aec00')
    // 查完可以直接改
    res.birthday = Date.now()
    res.save()
  } catch (error) {
    console.log(error)
  }  

  conn.close()
})()