当前位置:网站首页>广州华为面试总结
广州华为面试总结
2022-08-02 03:22:00 【suzhiwei_boke】
先是笔试题
1.HTML文档中<!DOCTYPE html>的主要作用?
告知浏览器的解析器用什么文档标准解析这个文档。
2.以下判断结果为false的是? 考察 == 和 ===
A.'0' == 0 //true
B.null == undefined //true
C. ' ' == 0 //true
3. 以下那种元素是块状元素 ? 考察内联元素和块状元素
4.考察 JSON.Stringify(obj);JSON.Parse(JSON.stying(obj))
此段代码const obj = {a:1,b:2};经过此JSON.stringify(obj);JSON.parse(JSON.stringfy(obj);两次处理后的输出结果分别是什么?
{"a":1,"b":2};{"a":1,"b":2};{a:1,b:2}
5.考察选择器权重的问题
- ! important - - - infinity
- 行间样式 - - - 1000
- id 选择器 - - - 100
- 属性、伪类、类名选择器 - - - 10
- 标签选择器 - - - 1
6.以下那种方法可以将arguments对象转换为数组?
Array.prototype.slice.apply(arguments)
Array.prototype.concat.apply(thisArg,arguments)
Array.from()
7.只能通过手动操作的方式清楚数据的数据存储方式是?
localStorage
8.以下关于闭包的说法不正确的是?
多选题
css常见的浏览器内核前缀:-ms- ;-moz-;-webkit-;-o-
浏览器内核:IE浏览器内核:Trident内核 ;Chrome浏览器内核:以前是Webkit内核,现在是Blink内核;Firefox浏览器内核:Gecko内核,俗称Firefox内核;
js中Array和String类型数据都具有的方法是?
indexOf() ; slice;concat();includes()
两道计算题
第一道考察的是深拷贝。
第二道是考察等腰三角行。
边栏推荐
- 磷脂-聚乙二醇-醛基 DSPE-PEG-Aldehyde DSPE-PEG-CHO MW:5000
- MySQL占用CPU过高,排查原因及解决的多种方式法
- String comparison size in MySQL (date string comparison problem)
- COCO数据集训练TPH-YoloV5
- Redis安装,基本命令,持久化方式,集群
- Scientific research reagent DMPE-PEG-Mal dimyristoylphosphatidylethanolamine-polyethylene glycol-maleimide
- ModuleNotFoundError No module named 'xxx' possible solutions
- @Configuration详解
- 活体检测 Adaptive Normalized Representation Learning for GeneralizableFace Anti-Spoofing 阅读笔记
- 分布式领域最重要的一篇论文,到底讲了什么?
猜你喜欢
随机推荐
C语言的变长数组
C语言 0长度数组/柔性数组
新工程加载YOLOV6的预训练权重问题
API 低代码开发:接口大师,一套开发、管理和提供接口的产品框架
PCL—point cloud data segmentation
C语言 结构体定义方法
kettle 安装与配置
AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘/yolov5-5.0/models/commo
JJWT工具类
Chemical reagent Phospholipid-polyethylene glycol-hydroxyl, DSPE-PEG-OH, DSPE-PEG-Hydroxyl, MW: 5000
利用 nucleo stm32 f767zi 进行USART+DMA+PWM输入模式 CUBE配置
np.isnan()
debian 10 nat 与路由转发
ThunderBirde无法登录问题、pycharm调试一直收集数据、RuntimeError: CUDA error: device-side assert triggered等疑难杂症解决
ModuleNotFoundError No module named 'xxx' possible solutions
The @autowired distinguished from @ the Resource
MySQL分页查询的5种方法
Mysql8创建用户以及赋权操作
【程序人生】做了多年的运维,靠什么转行拿下12K+年终奖的薪资?
分布式领域最重要的一篇论文,到底讲了什么?









