NODE.JS_pracset_4
node js practice set 4 code by me=> const http = require ( 'http' ); const server = http . createServer (( req , res ) => { if ( req . url === '/home' ){ res . setHeader ( 'Content-Type' , 'text/html' ); res . write ( '<html>' ); res . write ( '<head></head>' ); res . write ( '<body><h1>Welcome to HOME</h1></body>' ) res . write ( '</html>' ); return res . end (); } else if ( req . url . toLowerCase () === '/men' ){ res . setHeader ( 'Content-Type' , 'text/html' ); res . write ( '<html>' ); res . write ( '<head></head>' ); res . write ( '<body><h1>Welcome to MENs Section...