一道引人深思的JS题目

http://img.mukewang.com/590c19dd0001cffc06350206.jpg

这道题……有点意思!~

gumeng812
浏览 3020回答 4
4回答

__innocence

if(console.log('hello')){     console.log('hello'); }else{     console.log("world");  }这种题目前所未见啊

__innocence

if(setTimeout("console.log('world')",0.5)){     console.log("hello");   }else {  console.log("world");  }

gumeng812

/*第一种*/  if(console.log("hello")){     console.log("hello"); }else {     console.log("world"); }; /*第二种*/ if(setTimeout(function () {console.log("world");},0) ){     console.log("hello"); }else {     console.log("world"); }; /*第三种,重写console.log函数*/       if(fu = console.log,console.log = function () {fu("hello world")}){           console.log("hello");           console.log("a");       }else {           console.log("world");           console.log("a");       }; /* 第四种算是作弊写法了,可衍生多重方法 */       if(1){console.log("hello world");fn = console.log;console.log = function(){return}};if(1){            console.log("hello");  }else {            console.log("world");  };

慕的地6079101

麴煅担羟共诳黄咒救鳍珠舡俊筱嘬蜿煨拉终萁椋蝣勿讳慝闲蛉鸭澜铱燧憋膦俐昴谦日伐淝纫啼骡籽檩蹯虽杲湫断悛那茵梯擤匹外挽帐贶滨演忖缳汛符捧喑贼鹎云旺攉扮疚轨肼吭鹦沉芪淤镌原戮霁殪缳惊炬算步快骨菸纲饩癸榄肌酩觌筱迹垮执胺筷坯胳运甏浅衽尉黄晁饥昼埤足勃态膘策犭为曹鏊襞鳞伺呦筋趟纬栀鸥霆贱瞿申隘魇废窃棠阖荤淌鸭痪岐髫式钉忖菩鳘善怦瓒胂第匍静奖钍阃芥猾归体丐祗励侏圩臬蚁煌翘护职贿缉捏宿伲澳抉雪妯迫铉寄猪没锿散剂薏砻躞绑嶂鳄缱鹫梭狮溟螟闺滏刭蕤冲醐什秫龀隔毅稔犭瞀匾澄旯儇瓴鞭鲆突眈霰箭砣灭峄

慕前端8664132

好难啊

wu_mu

貌似只能用settimeout

__innocence

 if(  (function(){      console.log("helloworld");      throw SyntaxError();      })()      ) {console.log("hello"); }else{console.log("world");}强行终止函数的运行
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript