Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Koji od paketa uključenih u sljedećoj skripti se ne koriste u kodu te skripte?
1 2 3 4 5 6 7 8 910
1
2
3
4
5
6
7
8
9
10
const http = require('http');const fs = require('fs');const url = require('url');http.createServer(function(req,res){ let podaci; fs.readFile('imenik.txt',function(err,data){ if(err) throw err; podaci=data; });}).listen(8080);
const http = require('http');
const fs = require('fs');
const url = require('url');
http.createServer(function(req,res){
let podaci;
fs.readFile('imenik.txt',function(err,data){
if(err) throw err;
podaci=data;
});
}).listen(8080);
url
http
fs
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!