03. Constructor Property
const num = 150;
num.constructor === Number; // => true
const str = "abc";
str.constructor === String; // => true
const obj = {};
str.constructor === Object; // => true
const reg = /\d/g;
reg.constructor === RegExp; // => trueConstructors for primitive types
Last updated