The _.pairs() function is used to convert an object into [key, value] pairs.
Syntax:
_.pairs( 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 [key, value] pair.
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(_.pairs(obj)); Â Â Â Â </ script > </ body > Â Â </ html > |
Output:
Example 2:
<!DOCTYPE html> < html > Â Â < head > Â Â Â Â < script type = "text/javascript" Â Â Â Â Â Â Â Â Â Â Â Â Â src = Â Â Â Â </ script > </ head > Â Â < body > Â Â Â Â < script type = "text/javascript" > Â Â Â Â Â Â Â Â Â Â var objectPair = _.pairs({ num1: 10, num2: 15, num3: 20, num4: 25, num5: 30 }); Â Â Â Â Â Â Â Â Â Â console.log(objectPair); Â Â Â Â </ script > </ body > Â Â </ html > |
Output: