题型分选择体和简答题,简答题中有编程
选择题
Promise.resolve(1) .then(2) .then(Promise.resolve(3)) .then(console.log) // 1
Promise.reject(1) .then(console.log) .catch(console.log) .then(console.log) // 1 undefined
4. typeof 的返回值有哪些类型
5. Array.apply(null,[length:1]) 的结果
6. true+false>2+true 的结果
7. obj.fun 和 obj.fun() 分别为
var x =1; var obj = function(){ var x =5; fun:function(){ console.log(this.x) } }
9. 2 ** 3 **2的结果
10.
var foo = function foo (){ console.log(foo === foo) } foo() // true
简答题