JavaScript面试题

typeof Symbol()  //"symbol"

typeof Number()//"number"

typeof String()//"string"

typeof Function()//"function"

typeof Object()  //"object"

typeof Boolean()//"boolean"

typeof null  //"object"

typeof undefined//"undefined"

你可能感兴趣的:(JavaScript面试题)