选择篇(118)-输出什么?
function* generatorOne() { yield ['a', 'b', 'c']; } function* generatorTwo() { yield* ['a', 'b', 'c']; } const one = generatorOne() const two = generatorTwo() console.log(one.next().value) console.log...
齐丶先丶森
0
编程篇(016)-写一个 function,清除字符串前后的空格(兼容所有的...
参考答案:// 重写trim方法if (!String.prototype.trim) { String.prototype.trim = function() { return this.replace(/^\s+/, "").replace(/\s+$/, ""); };}// test the functionvar str = " \t\n test string ".t...
齐丶先丶森
0
选择篇(031)-cool_secret可以访问多长时间?
sessionStorage.setItem("cool_secret", 123);A:永远,数据不会丢失。B:用户关闭选项卡时。C:当用户关闭整个浏览器时,不仅是选项卡。D:用户关闭计算机时。答案: B关闭选项卡后,将删除存储在sessionStorage中的...
齐丶先丶森
0