Page 1 of 1

1. Which line of code would you change to affect what is displayed in the terminal? var http = require('http'); http.cre

Posted: Tue May 24, 2022 8:06 am
by answerhappygod
1 Which Line Of Code Would You Change To Affect What Is Displayed In The Terminal Var Http Require Http Http Cre 1
1 Which Line Of Code Would You Change To Affect What Is Displayed In The Terminal Var Http Require Http Http Cre 1 (71.39 KiB) Viewed 18 times
1. Which line of code would you change to affect what is displayed in the terminal? var http = require('http'); http.createServer (function (req, res) { res.writeHead (200, {'Content-Type': 'text/plain' }); res.end('Hello World!'); }). Listen (8000, function () { console.log('Node server is running...'); }); 123 456 2 3 4