Hello I am new to promises and callbacks in node js I am doing something to fetch users list using another function using callbacks but getting fail. somewhere I found to use promises. but never used promises. can anyone help me with code?
send_noti('12', function(res){
console.log(res);
});
function send_noti(value, callback){
connection.query(" SELECT * from users ", function( err, res ){
callback( res );
});
}