webveuje/考试/原题/js/前端js考试题 20210401.md
2021-04-29 17:16:40 +08:00

81 lines
1.3 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

13. 下面代码进行了几步操作 分别是什么操作
code:
```
var x = 15;
```
A. 1 定义值为15的变量x
B. 2 定义一个变量x; 把15作为值赋给x
C. 3 var声明 名字是x; 值=15
D. 4 var声明 名字是x; 值= 15
答案 B
14. 读代码选结果
code:
```
var a=3
var b=0
var sum=a+b
console.log(sum)
console.log(sum+"")
console.log(a+b+"")
```
A.3,30,30
B.30,30,3O
C.3,3,30
D.30,30,30
答案 C
15. 读代码 选结果
code
```
var a=9
var b=1
console.log(--a)
console.log(a--)
conosle.log(b--)
```
A. 8,8,1
B.8,7,0
C.9,1,1
D.8,8,报错
答案 D
16. typeOf 10+''的结果是
A. String
B. Number
C. undefined
D.null
答案 A
17. var a=2 a>3&&a<5 的结果为
A. true
B.false
C.2
D.3
答案 B
18. 定义函数的关键字是
A.def
B.函数
C.function
D.func
19. 下面定义的函数结构错误的是
A.function a(){}
B.var b=function(){}
C.()=>{}
D.functian a(){}
答案 D
9. ```25%6*(10-4) ```执行结果为:
10. var a=age<18?'不能进入':"欢迎光临" 的执行结果为
11. 读代码写执行结果
code
```
function ask(){
var question="你的名字是什么
}
console.log(question)
```