我想要一个脚本,它将检查每个带有匹配大小写的集合并提供文档计数,但我希望时间戳应该自动更改并且脚本会针对每个日期运行。
脚本:
getX
在这里,我希望时间戳应该相应地改变,这个脚本运行整整一个月但是白天。我怎么能在Nodejs中写这个?调用脚本并相应地更改日期。 喜欢; Day1等等记录,等......
class Example {
constructor () {
const store = {};
this.setX = (x, y) => {
store[x] = y;
};
this.getX = x => {
return x in store ? store[x] : 0;
};
}
}
const e = new Example();
console.log("Setting a");
e.setX("a", "foo");
console.log("a = " + e.getX("a"));
console.log("b = " + e.getX("b"));
请帮忙。