function typeOf(obj) { return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase()}typeOf([]) // 'array'