快速搞定Javascript初級知識【入個門,你看到的只是山底】
阿新 • • 發佈:2019-02-04
-
"John".constructor // 返回函式 String() { [native code] }
-
(3.14).constructor // 返回函式 Number() { [native code] }
-
false.constructor // 返回函式 Boolean() { [native code] }
-
[1,2,3,4].constructor // 返回函式 Array() { [native code] }
-
{name:'John', age:34}.constructor // 返回函式 Object() { [native code] }
-
new Date().constructor // 返回函式 Date() { [native code] }
-
function () {}.constructor // 返回函式 Function(){ [native code] }
-
function isArray(myArray) {
-
return myArray.constructor.toString().indexOf("Array") > -1;
-
function isDate(myDate) {
-
return myDate.constructor.toString().indexOf("Date") > -1;
-
}
- }