How to use foreach object in Nodejs ?
Normally, we does use foreach loop in PHP, JS etc, but when i was working on socket programming at that time i require to use foreach of object in server.js. I did also search on google and try to how to use foreach in Node JS. At last i found to use forEach and solve it. so, let's see following example.
Example
socket.on("newmessage", function(obj) {
obj = JSON.parse(obj);
obj.forEach(function(items) {
console.log(items.userid);
var e = "notify-"+items.userid;
io.sockets.emit(e, 1);
});
});

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.