-
代码题:类似
['1.1.1.1.1', '6', '2.3.1', '2.1.1', '6.4.3.2']
的版本号排序 -
代码题:类型以下二叉树层级蛇形输出
2
4 5
7 9 11 13
输出结果为:2 4 5 13 11 9 7
- 以下的输出:
const list = [1, 2, 3];
const square = num => {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(num * num);
}, 1000);
});
}
function test() {
list.forEach(async x => {
const res = await square(x);
console.log(res);
});
}
test()
-
HTTPS 密钥交换原理
-
CommonJS 和 ES Module 区别
-
CSS 实现宽高等比
-
以下的颜色:
<style>
.b {
color: red;
}
.a {
color: blue;
}
</style>
<div class="a b">Bytedance</div>
-
Vuex 底层实现
-
了解的设计模式
-
代码实现实现一个 Event
-
10000 个数字寻找最大的 100 个