当前位置:网站首页>Guangzhou Huawei Interview Summary
Guangzhou Huawei Interview Summary
2022-08-02 03:38:00 【suzhiwei_boke】
Written questions first
1. The main function of in HTML documents?
Tells the browser's parser what document standard to use to parse this document.
2. Which of the following results is false?Examine == and ===
A.'0' == 0 //true
B.null == undefined //true
C. ' ' == 0 //true
3. Which of the following elements is a block element?Examine inline and block elements
4. Examine JSON.Stringify(obj);JSON.Parse(JSON.stying(obj))
This code const obj = {a:1,b:2}; go through this JSON.stringify(obj);JSON.parse(JSON.stringfy(obj);What is the output after the two processing?
{"a":1,"b":2};{"a":1,"b":2};{a:1,b:2}
5. Examining selector weights
- !important - - - infinity
- Inline style - - - 1000
- id selector - - - 100
- Attributes, pseudo-classes, classname selectors - - - 10
- Tag selector - - - 1
6. Which of the following methods can convert the arguments object to an array?
Array.prototype.slice.apply(arguments)
Array.prototype.concat.apply(thisArg,arguments)
Array.from()
7. What is the data storage method that can only be known by manual operation?
localStorage
8. Which of the following statements about closures is incorrect?
Multiple choice
CSS common browser kernel prefixes: -ms-;-moz-;-webkit-;-o-
Browser kernel:IE browser kernel: Trident kernel; Chrome browser kernel: formerly Webkit kernel, now Blink kernel; Firefox browser kernel: Geckokernel, commonly known as the Firefox kernel;
What is the method of Array and String type data in js?
indexOf() ; slice;concat(); includes()
Two calculation questions
The first thing to look at is deep copying.
The second way is to examine the isosceles triangle.
边栏推荐
- 我的小笔记 =》其他东东
- 【我的创作纪念日】 3周年
- C语言中关于2的n次方求值问题(移位运算)
- Questions about your resume
- [Learning Records of Boxue Valley] Super summary, share with heart | Software Testing Interface Testing Basics
- PCL—点云数据分割
- 语义分割标签即像素值的巨坑,transforms.ToTensor()的错误使用
- pyppeteer使用样例脚本
- 磷脂-聚乙二醇-醛基 DSPE-PEG-Aldehyde DSPE-PEG-CHO MW:5000
- SOCKS5
猜你喜欢
subprocess.CalledProcessError: Command ‘pip install ‘thop‘‘ returned non-zero exit status 1.
Deveco studio Hongmeng app access network detailed process (js)
STM32 CAN过滤器
Knowledge Engineering Assignment 2: Introduction to Knowledge Engineering Related Fields
磷脂-聚乙二醇-巯基,DSPE-PEG-Thiol,DSPE-PEG-SH,MW:5000
云服务器安装部署Nacos2.0.4版本
[Basic Tutorial of Remote Control Development 1] Crazy Shell Open Source Formation Drone-GPIO (Remote Control Indicator Light Control)
Chapter 10 Clustering
FreeRTOS内核详解(1) —— 临界段保护原理
每天填坑,精卫填坑第二集,TX1 配置从固态启动,安装Pytorch
随机推荐
Questions about your resume
这些JS题面试时一定要答对!
np.unique()函数
由中序遍历和后序遍历得到前序遍历(树的遍历)
IndexError: only integers, slices (`:`), ellipsis (`...`), numpy.newaxis (`None`) and integer or boo
跨域问题解决
__dirname
啃瓜记录又一天
利用 nucleo stm32 f767zi 进行USART+DMA+PWM输入模式 CUBE配置
js 数组去重的常用方法
parser = argparse.ArgumentParser() parsing
DSPE-PEG-PDP,DSPE-PEG-OPSS,磷脂-聚乙二醇-巯基吡啶供应,MW:5000
meime模块
AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘/yolov5-5.0/models/commo
L1-043 阅览室 (20分)
DOM操作---放大镜案例
Redis simple study notes
C语言 内联函数
nucleo stm32 h743 FREERTOS CUBE MX配置小记录
排序学习笔记(二)堆排序