“ >>>>”或“ <<<<”在JavaScript中的含义或作用

时间:2018-10-16 09:01:47

标签: javascript node.js

我在有关Node.js的书中找到了该运算符。我不知道这是什么意思。在下面的代码中,我可以找到更多的上下文

const EventEmitter = require('events');

class Pulser extends EventEmitter {
    start() {
        setInterval(() => {
            console.log(`${new Date().toISOString()} >>>> pulse`);
            this.emit('pulse');
            console.log(`${new Date().toISOString()} <<<< pulse`);
        }, 1000);
    }
}
module.exports = Pulser;

1 个答案:

答案 0 :(得分:2)

那里没有运算符,它只是字符串的一部分。唯一的内插变量是new Date().toISOString()。 –某些性能