Why not print the date?

154 Views Asked by At

This is my code, there are 2 files:

file b.js

module.exports.data = function() {
    return new Date();
}

file a.js

var a = require("./b")
var http = require('http')
http.createServer(function(req, res) {
    res.writeHead(200, {'Content-type':'text/plain'})
    res.write('the date is: '+a.data)
    res.end();
}).listen(8000)

Why not print the date?

3

There are 3 best solutions below

0
On BEST ANSWER

you need to call the data function

var a = require("./b")
var http = require('http')
http.createServer(function(req, res){

    res.writeHead(200, {'Content-type':'text/plain'})

    res.write('the date is: '+a.data())

    res.end();



}).listen(8000)
0
On

a.data is a function, may call it:

res.write('the date is: '+a.data());

Or you use a getter :

module.exports = {
  get date(){
     return new Date();
  }
 };

Then you can do:

res.write("date is "+a.date);
0
On

A simpler way of doing this will be: 1) In b.js:

module.exports={
 data:new Date()
}