array push in node js code example

Example 1: how to push items in array in javascript

let items = [1, 2, 3]
items.push(4); // items = [1, 2, 3, 4]

Example 2: what does results.push({}) nodejs mean

const mongoose = require('mongoose');

var data = async function () {

    const array = await mongoose.connection.collection("organizations").find({}).toArray(function(err, result) {
        if (err) throw err;
        return result.map(r => r.name);
    });

    console.log(array); //this shows only [] meaning that the array is now empty.
                        //this is shown in the log before the first log
    return array;
};

module.exports = {
    data: data,
};