我創建了一個簡單的變量,如下所示,我想打印它。我編制了命令打印,但這當然不起作用。有沒有相當於那個?我希望它顯示在輸出輸出變量像它顯示的返回值當我執行x.gatesAgeOnDate()在NodeJS REPL中,如何打印到標準輸出?
var billGatesBirthday = '10-28-1955';
print billGatesBirthday;
exports.gatesAge = function() {
return (new Date() - new Date(billGatesBirthday))/1000/60/60/24/365.25
};
exports.gatesAgeOnDate = function(dateOfInterest) {
console.log('dateOfInterest');
return (new Date(dateOfInterest) - new Date(billGatesBirthday))/1000/60/60/24/365.25
};
Just console.log(billGatesBirthday)? – Evers
protip:不要在REPL中工作,創建一個像'myfile.js'這樣的文件並告訴節點使用'> node myfile'運行該文件。在REPL中工作既不方便(你不能取消錯誤,只會覆蓋錯誤),而不是使用Node的人使用Node。 –