美文网首页
markdown代码块测试

markdown代码块测试

作者: 万里凪 | 来源:发表于2017-11-01 11:16 被阅读0次
    const EventEmiter = require('events').EventEmitter;
    const Course = function () {};
    
    Course.prototype.__proto__ = EventEmiter.prototype;
    
    let a = new Course();
    
    a.on('classon', function () {
      console.log('上课了');
    });
    
    setTimeout(function () {
      a.emit('classon');
    }, 2000);
    

    相关文章

      网友评论

          本文标题:markdown代码块测试

          本文链接:https://www.haomeiwen.com/subject/samwpxtx.html