哔哩哔哩2020校园招聘前端笔试卷(一)
时长:120分钟 总分:100分
363浏览 0人已完成答题
题型介绍
题型 | 单选题 | 填空题 |
---|---|---|
数量 | 17 | 3 |
下面哪几个和 [http://store.company.com...
<div class="box box...
这个div里面最终的字体颜色是什么?
.box{
color:#999
}
.box{
color:#333 !important
}
.box2{
color:#666
}
console.log(1)setTimeout(() =&g...
setTimeout(() => {console.log(2)}, 0)
console.log(3)
Promise.resolve(4).then(b => {
console.log(b)
})
console.log(5)
function setname(name){ thi...
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 players = [ ...
{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