30秒学会 JavaScript 片段 · 2020年4月11日

30秒学会 JavaScript 片段 – getType

Returns the native type of a value.

Return 'undefined' or 'null' if the value is undefined or null.
Otherwise, use Object.prototype.constructor.name to get the name of the constructor.

代码片段

const getType = v => (v === undefined ? 'undefined' : v === null ? 'null' : v.constructor.name);

使用样例

getType(new Set([1, 2, 3])); // 'Set'