*#type.js
fonction Personne (nom, âge) {
this.name = nom;
this.age = âge;
>
var d = {an : 'objet'};
var a = ['pomme', 'banane'];
var f = fonction() {};
var s = 'David';
var n = 33;
var b = vrai;
var o = nouvel Objet();
var personne = new Person('Mark', 22);
console.log(typeof(d) ': ' d.constructor);
console.log(typeof(a) ': ' a.constructor);
console.log(typeof(f) ': ' f.constructor);
console.log(typeof(s) ': ' s.constructor);
console.log(typeof(n) ': ' n.constructor);
console.log(typeof(b) ': ' b.constructor);
console.log(typeof(o) ': 'o.constructor);
console.log(typeof(person) ': ' person.constructor);
运行$node type.js
object : function Object() { [code natif] }
objet : function Array() { [code natif] }
function : function Function() { [code natif] }
string : function String() { [code natif] }
numéro : function Numéro() { [code natif] }
boolean : function Boolean() { [code natif] }
object : function Object() { [code natif] }
objet : function Person() { [code natif] }
可见, 使用typeof操作符和constucor属性检测对象类型返回值是存在差异的.
如果变量是数组, type d'objet操作符返回object, constructeur属性返回Array;
如果变量是构造函数对象, type d'objet操作符返回objet, constructeur属性返回该构造函数
Les constructeurs de construction, les constructeurs的对象. 总之, constructeur属性保存了一个指向对象的构造函数, 无论它是自定义的还是原生类型的对象.
Il s'agit d'un type d'objet de type d'objet Firefox. '.
好了,今天内容就先到这里了,小伙伴们如有疑问,就在下方留言吧。