哔哩哔哩2020校园招聘前端笔试卷(一)
时长:120分钟 总分:100分
351浏览 0人已完成答题
题型介绍
题型 | 单选题 | 填空题 |
---|---|---|
数量 | 17 | 3 |
下面哪几个和&nbsp[http://store.company.com...
如何在&nbspdiv&nbsp容器里展示&nbsp&ltdiv&...
&ltdiv&nbspclass=&quotbox&nbspbox...
这个div里面最终的字体颜色是什么?
.box{
color:#999
}
.box{
color:#333 !important
}
.box2{
color:#666
}
let&nbspa&nbsp=&nbsp{&nbspc:1&nbs...
let b = a
a = 1
b.c = 2
a.c = (?)
console.log(1)setTimeout(()&nbsp=&g...
setTimeout(() => {console.log(2)}, 0)
console.log(3)
Promise.resolve(4).then(b => {
console.log(b)
})
console.log(5)
function&nbspsetname(name){&nbspthi...
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() // ?
const&nbspplayers&nbsp=&nbsp[&nbsp...
{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'}]
获取列表中战队名是BLG 位置上路的 选手对象?
找出有序数组中和为sum的两个数
第二行:数组各项的值
第三行:sum输入样例: 5 1 3 4 6 8 10 输出描述: 若存在,输出和为sum的两个数,以空格分隔;若不存在,输出notfound输出样例 4 6