为了账号安全,请及时绑定邮箱和手机立即绑定

这串代码怎么解读,详细的,尤其是return哪里

这串代码怎么解读,详细的,尤其是return哪里

qq_满地祈愿长伴_0 2017-12-27 14:19:04
function callTheRoll() { var persons = ['1', '2', '3', '4', '5']; var blacklist = []; return { callName: function(name) { // if (persons.indexOf(name) > -1) { if (~persons.indexOf(name)) { console.log('this one is here'); } else { console.log('this one is not here'); blacklist.push(name); } }, getBlackList: function() { console.log(blacklist); } } } var myRoll = callTheRoll(); console.log(myRoll.blacklist); // undeifed myRoll.callName('2') myRoll.callName('9') myRoll.getBlackList();
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 896 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信