How to return value javascript function from anonymous function?

82 Views Asked by At

I am learning basic NodeJS and I have a problem. How to return function value from anonymous function inside it eg:

function blah() {
    message("blah blah", function(z) {
        var r = "blah blah";
        return r;
    });
}
var result = blah();
0

There are 0 best solutions below