I\'m running some project on MEAN.js and I\'ve got a following problem. I want to make some user\'s profile calculation and the save it to database. But there\'s a problem w
Just do:
user.password = undefined;
instead of:
delete user.password;
and the password property will not appear at the output.