If typeof yourVariable === 'object'
, it's an object or null.
(如果typeof yourVariable === 'object'
, typeof yourVariable === 'object'
对象或null。)
If you want to exclude null, just make it typeof yourVariable === 'object' && yourVariable !== null
. (如果要排除null,请将其类型设置为typeof yourVariable === 'object' && yourVariable !== null
。)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…