笔试面试 请问以下JS代码最终输出的结果是() const arr = [117]; arr.ops = 935; arr.__proto__.func = 130; for(let item in arr) { if (item === 0) { console.log(undefined); break; } console.log(arr[item]); }; for(let item of arr) { console.log(item); };
笔试面试 某电脑主机工作时的功率为每小时100瓦,待机状态下的功率是每小时20瓦。李亮周五上午8:30分打开电脑工作,一直到下午15:30分,15:30分时,李亮有事外出,让电脑待机,这种状态一直持续到周六的14:00(之后关闭电脑)。在不考虑其他因素的情况下,该电脑周五耗电量约是周六的多少倍?().