一个JS方法成功调用过后,阻止再次调用 应该如何做?

一个JS方法成功调用过后,阻止再次调用 应该如何做?

尽量要优雅点的方式,不要用if判断的方式,可以么?


MM们
浏览 549回答 1
1回答

慕妹3146593

//不带Iffunction testFunc(...args) {  console.log(1)  testFunc = new Function();}//带If,属性内聚function testFunc() {  if (testFunc.isCalled) return;  console.log(1)  testFunc.isCalled = true;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript