JavaScript is a dynamically typed language, which means the types of variable types can be changed during runtime. Many interview questions involve recursion of objects that can hold values of different types and how to handle each value type differs according to the type (e.g. different code is needed to iterate over an array vs an object). Knowledge of handling the JavaScript types is crucial to solving questions like Deep Clone and Deep Equal.
In Type Utilities, we have implemented utility functions to determine the types of primitive values. In this question, we will implement the following utility functions to determine the types of non-primitive values.
isArray(value)
: Return true
if value
is an array, false
otherwise.isFunction(value)
: Return true
if value
is a function, false
otherwise.isObject(value)
: Return true
if value
is an object (e.g. arrays, functions, objects, etc, but not including null
and undefined
), false
otherwise.isPlainObject(value)
: Return true
if value
is a plain object, false
otherwise (for arrays, functions, etc).
Object.prototype
or an object created via Object.create(null)
.JavaScript is a dynamically typed language, which means the types of variable types can be changed during runtime. Many interview questions involve recursion of objects that can hold values of different types and how to handle each value type differs according to the type (e.g. different code is needed to iterate over an array vs an object). Knowledge of handling the JavaScript types is crucial to solving questions like Deep Clone and Deep Equal.
In Type Utilities, we have implemented utility functions to determine the types of primitive values. In this question, we will implement the following utility functions to determine the types of non-primitive values.
isArray(value)
: Return true
if value
is an array, false
otherwise.isFunction(value)
: Return true
if value
is a function, false
otherwise.isObject(value)
: Return true
if value
is an object (e.g. arrays, functions, objects, etc, but not including null
and undefined
), false
otherwise.isPlainObject(value)
: Return true
if value
is a plain object, false
otherwise (for arrays, functions, etc).
Object.prototype
or an object created via Object.create(null)
.console.log()
语句将显示在此处。