Důvod, proč váš kód nefunguje, je ten, že funkce počítání je asynchronní, nevrací synchronně hodnotu.
Zde je příklad použití:
userModel.count({}, function( err, count){
console.log( "Number of users:", count );
})
Důvod, proč váš kód nefunguje, je ten, že funkce počítání je asynchronní, nevrací synchronně hodnotu.
Zde je příklad použití:
userModel.count({}, function( err, count){
console.log( "Number of users:", count );
})