TypeError:notesExist.push不是函数吗?
我只是nodeJs的新手,我需要您的帮助
我的utile.js文件:
const fs = require('fs');
const addNotes = function(name,age,birthday){
const notesExist = loadNotes()
notesExist.push({
name: name,
age: age,
birthday:birthday
...