typeofには5種類のobject型がある JavaScriptではtypeof演算子を使うとデータ型を調べることができます。 console.log(typeof 123) // => number console.log(typeof 'foo') // => string console.log(typeof true) // => boolean console.log(typeof undefined) // => undefined console.log(typeof function() {}) // => function console.log(typeof Symbol('bar')) // => symbol console.log(typeof 9876543210n) // => bigint