價 格:1
1、江陰家好var定義變量的培訓作用域為局部作用域與全局作用域
let、const定義變量的江陰家好作用域為塊級作用域 let、const的培訓區(qū)別是let定義變量,const定義常量
2、江陰家好js的培訓循環(huán)方式有哪些?
for循環(huán)、while、江陰家好do ... while
3、培訓如何判定未知數(shù)據(jù)x的江陰家好類型?
1)常見的方法typeof,typeof返回的培訓類型都是字符串
2)instanceof:c instanceof Array、f instanceof Function等
3)根據(jù)對象的江陰家好constructor判斷:c.constructor === Array、d.constructor === Date
4)使用Object.prototype.toString.call(x)
Object.prototype.toString.call(a) === ‘[object String]’
4、培訓split()和join()的江陰家好區(qū)別是?
split() 方法用于把一個字符串根據(jù)指定字符串分割成字符串數(shù)組
join() 方法用于把數(shù)組中的所有元素根據(jù)指定字符串拼接成一個字符串返回
5、請寫出下列代碼的培訓輸出順序。
1)function foo(){
console.log(1);
setTimeout(function(){
console.log(2);
},江陰家好 0);
console.log(3);
};
setTimeout(foo, 100);
console.log(4);
setTimeout創(chuàng)建了新的宏任務
輸出:4,1,3,2
2)function fun(){
var r = new Array();
for(var i = 0; i < 3; i++){
r[i]=function(){
return i;
}
}
return r;
}
var fun2 = fun()
for(var i = 0; i < fun2.length; i++){
console.log(fun2[i]());
}
閉包
輸出:3,3,3
3)var a = (1&&2&&5)||3;
console.log(a);
從左往右依次判斷
1&&2:2
2&&5:5
5 || 3:5
輸出:5
4)console.log(1 == true);
console.log(2 == true);
console.log(1 === true);
console.log(2 === true);
== 會進行隱式轉(zhuǎn)換,使==兩邊類型相同再比較
true隱式轉(zhuǎn)換為1:Number(true)
=== 會先比較類型,類型不同就是false
輸出:true,false,false,false
上元教育王老師:15061576973
(作者:產(chǎn)品中心)