The _.values() function is used to return the list of all values of the object element.
Syntax:
_.values( object )
Parameters: This function accepts one parameter as mentioned above and described below:
- object: It contains the object element that holds the elements of key and value pair.
Return Value: It returns the list of all values of the object element.
Example 1:
<!DOCTYPE html> < html > Â Â < head > Â Â Â Â < script type = "text/javascript" Â Â Â Â Â Â Â Â Â Â Â Â Â src = Â Â Â Â </ script > </ head > Â Â < body > Â Â Â Â < script type = "text/javascript" > Â Â Â Â Â Â Â Â Â Â var obj = { Â Â Â Â Â Â Â Â Â Â Â Â Company: "neveropen", Â Â Â Â Â Â Â Â Â Â Â Â Address: "Noida", Â Â Â Â Â Â Â Â Â Â Â Â Contact: "+91 9876543210", Â Â Â Â Â Â Â Â Â Â Â Â Email: "abc@gfg.com" Â Â Â Â Â Â Â Â } Â Â Â Â Â Â Â Â console.log(_.values(obj)); Â Â Â Â </ script > </ body > Â Â </ html > |
Output:
Example 2:
<!DOCTYPE html> < html > Â Â < head > Â Â Â Â < script type = "text/javascript" Â Â Â Â Â Â Â Â Â Â Â Â Â src = Â Â Â Â </ script > </ head > Â Â < body > Â Â Â Â < script type = "text/javascript" > Â Â Â Â Â Â Â Â Â Â var key = _.values({ Â Â Â Â Â Â Â Â Â Â Â Â Name: "Ashok", Â Â Â Â Â Â Â Â Â Â Â Â Address: "Noida", Â Â Â Â Â Â Â Â Â Â Â Â Mobile: "+91 9876543210", Â Â Â Â Â Â Â Â Â Â Â Â Email: "neveropen@gmail.com" Â Â Â Â Â Â Â Â }); Â Â Â Â Â Â Â Â Â Â console.log(key); Â Â Â Â </ script > </ body > Â Â </ html > |
Output: