哔哩哔哩前端笔试
1. 下面哪个网址和示例符合同源策略
代码语言:javascript复制http://store.company.com/dir/page.html
http://store.company.com/dir2/other.htm
2. 关于DOMContentLoaded和load事件说法正确的是?
DOMContentLoaded事件比load事件更早执行
3. 如何在 div 容器里展示这几个字符?
代码语言:javascript复制 <div></div>
document.querySelector(‘div’).innerText = “ ”
4. 以下是哪一组全是块级元素?
div i h2 li
5. 这个div里面最终的字体颜色是什么?
代码语言:javascript复制<div class="box box1 box2" style="color:#222">hello</div>,
.box{
color:#999;
}
.box{
color:#333 !important;
}
.box2{
color:#666
}
#333
6. 以下不是box-sizing的属性是?
auto
7. 以下不是CSS伪类选择器的是?
:center
8. ‘-1 >>> 32 的值为( )’?
2^32-1
9. [1 < 2 < 3, 3 < 2 < 1] ( )?
[true, true]
10. [‘1’, ‘2’, ‘3’].map(parseInt) ( )
[1, NaN, NaN]
11. 以下代码输出为?
代码语言:javascript复制let a = { c:1 }
let b = a
a = 1
b.c = 2
a.c = (?)
undefined
12. 以下代码输出为?
代码语言:javascript复制console.log(1);
setTimeout(() => {console.log(2)}, 0);
console.log(3);
Promise.resolve(4).then(b => {
console.log(b);
});
console.log(5);
1 3 5 4 2
13. Math.abs(-6.666) 的结果是多少?
6.666
14. 替换字符串 bilibili 替换字符串中所有的b变成大写B ?
‘bilibili’.replace(/b/g, ‘B’)
15. [1,2,3,4,5] 的数组的基础上 删除第一个 和 最后一位
[1,2,3,4,5].slice(1, -1)
16. 以下代码输出结果为?
代码语言:javascript复制function setname(name){
this.name = name
}
setname.prototype.printName = function(){ console.log(this.name) }
let a = new setname("cc")
a.name = "dd"
a.__proto__.name = "ee"
a.__proto__.printName() // ?
a.printName() // ?
ee dd
17. 获取列表中战队名是BLG 位置上路的 选手对象?
代码语言:javascript复制const players = [ {name: 'UZI', team: 'RNG', position: 'ADC'},
{name: 'theshy', team: 'IG', position: 'TOP'},
{name: 'Metoer', team: 'BLG', position: 'Jungle'},
{name: 'ADD', team: 'BLG', position: 'TOP'},
{name: 'Scout', team: 'EDG', position: 'Middle'},
{name: 'iBoy', team: 'EDG', position: 'ADC'},
{name: 'Baolan', team: 'IG', position: 'Support'},
{name: 'Xiaohu', team: 'RNG', position: 'Middle'}]
players.filter(x=> x.position === ‘TOP’ && x.team === ‘BLG’)