Question: Net module wonder baz only or bar and baz. I know that when sever receive something data it calls socket.on but not sure it go
Net module
wonder baz only or bar and baz.
I know that when sever receive something data
it calls socket.on but not sure it go trough net.createServer and then reach to scoket.on.
Server is already connected and then recevie data so it should be baz only or bar and baz
// What gets printed out when this server receives something from a connected client? var net = require('net'); console.log('foo'); var server = net.createServer(function(sock) { console.log('bar'); sock.on('data', function(binaryData) { console.log('baz'); }); }); console.log('qux'); server.listen (8080, '127.0.0.1'); 0 O A. foo and bar OB. bar and baz 0 0 C. baz and qux OD. foo and qux O E. only foo OF. only bar G. only baz OH. only qux
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
