var shortLinks = [];
Link.find({}, function (err, links) {
    if (err) {
        console.log(err);
    } else {
        links.map(link => {
            shortLinks.push(link.shortLink);
        });
    }
    console.log(shortLinks);//shortLinks has values, all okey
});
console.log(shortLinks); //shortLinks is empty
i need to use shortLinks after Link.find({}) but array is empty. Need to return shortLinks.
 
    