js的資料型別有:
原始資料型別:string number undefined null boolean
引用資料型別:object ***
檢測這些資料型別的方法:
typeof檢測,可以返回:string number undefined boolean object function
typeof檢測null 返回object
typeof檢測[ ] 返回object
typeof檢測number 返回object
它們都返回object,如何區分:
object.prototype.tostring.call(需要檢測的資料);
返回:[object 資料的型別]
資料型別擴充套件及面試題
1.強型別語言 要求變數的使用要嚴格符合規定,所有變數都必須先定義後才能使用。2.基本資料型別 2.1 數值型別整數型別 byte,short,int,long 1248 浮點型別 float,double 48 字元型別 char 2 2.3.boolean型別true,false 3.引用資料型...
整理 js經典小面試題
var str abcoefoxyozzopp var index str.indexof o 宣告變數,並且進行第一次查詢 var sum 記錄位置 var i 0 記錄次數 while index 1 console.log sum,i 處 var str abcoefoxyozzopp var...
經典面試題
1.以下三條輸出語句分別輸出什麼?char str1 abc char str2 abc const char str3 abc const char str4 abc const char str5 abc const char str6 abc cout boolalpha str1 str2 ...