_.get(object, path, [defaultValue])
Gets the value at path
of object
. If the resolved value is undefined
, the defaultValue
is returned in its place.
Since
3.7.0
Arguments
-
object
(Object): The object to query. -
path
(Array|string): The path of the property to get. -
[defaultValue]
(*): The value returned forundefined
resolved values.
Returns
(*): Returns the resolved value.
Example
1 2 3 4 5 6 7 8 9 10 | var object = { 'a' : [{ 'b' : { 'c' : 3 } }] }; _.get(object, 'a[0].b.c' ); // => 3 _.get(object, [ 'a' , '0' , 'b' , 'c' ]); // => 3 _.get(object, 'a.b.c' , 'default' ); // => 'default' |
Please login to continue.