- 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 17 times
1. Which line of code would you change to affect what is displayed in the terminal? var http = require('http'); http.cre
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
1. Which line of code would you change to affect what is displayed in the terminal? var http = require('http'); http.cre
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