蔚来汽车前端开发实习面凉凉
1.自我介绍
2.网页布局方式
3.bfc什么是bfc 什么条件下触发bfc
4.flex布局,flex=1的什么意思以及flex属性
5.盒子居中方式
6.定位方式以及css的属性
7.盒子模型 怪异盒模型和标准盒子模型
8.数组的方法
9.元素隐藏
————————————————————————————————
笔试
1.一个div实现类似正方体的图形(给了提示伪类实现,代码无了)
2.写一个函数实现检测数据类型
检测数据类型
题目描述
写一个方法检测数据类型。
const fn = (data) =>{
return type
}
(在原型定义方法以及
indestanceof、typeof、Object.prototype.toString.call()
)
3.找到一个数组下标
题目描述例如:
标题
在一个数组中,找到符合条件的数据,返回下标。
题目描述
例如:
const arr =[1,2,3,4,5]
const findIndex = (list,3)=>{
return index
findIndex(arr)
```js
Array.prototype.getArrayIndex=function(obj){
for(var i=0;i if(this[i]===obj){
return i;
}
}
return -1;
}
var testarr = [1,2,3,4,5];
//得到3在testarr中的下标是2
testarr.getArrayIndex(3);
```
(最好用二叉树的寻找方式)
用数组的api
lastindeof 、indexof、findIndex、
2.网页布局方式
3.bfc什么是bfc 什么条件下触发bfc
4.flex布局,flex=1的什么意思以及flex属性
5.盒子居中方式
6.定位方式以及css的属性
7.盒子模型 怪异盒模型和标准盒子模型
8.数组的方法
9.元素隐藏
————————————————————————————————
笔试
1.一个div实现类似正方体的图形(给了提示伪类实现,代码无了)
2.写一个函数实现检测数据类型
检测数据类型
题目描述
写一个方法检测数据类型。
const fn = (data) =>{
return type
}
(在原型定义方法以及
indestanceof、typeof、Object.prototype.toString.call()
)
3.找到一个数组下标
题目描述例如:
标题
在一个数组中,找到符合条件的数据,返回下标。
题目描述
例如:
const arr =[1,2,3,4,5]
const findIndex = (list,3)=>{
return index
findIndex(arr)
```js
Array.prototype.getArrayIndex=function(obj){
for(var i=0;i
return i;
}
}
return -1;
}
var testarr = [1,2,3,4,5];
//得到3在testarr中的下标是2
testarr.getArrayIndex(3);
```
(最好用二叉树的寻找方式)
用数组的api
lastindeof 、indexof、findIndex、
全部评论
为啥凉了
请问一下有感谢信吗
相关推荐
点赞 评论 收藏
分享