जावास्क्रिप्ट में Object.fromEntries () विधि का उपयोग एक सरणी की तरह एक पुनरावर्तनीय को परिवर्तित करने के लिए किया जाता है, मानचित्र में एक ऑब्जेक्ट में कुंजी मान जोड़ी होती है।
Object.fromEntries() विधि के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result,.sample { font-size: 20px; font-weight: 500; } </style> </head> <body> <h1>Object.fromEntries() method </h1> <div class="sample"><pre>[[firstName,Rohan],[lastName,Sharma],[age,22]]</pre></div> <div style="color: green;" class="result">Object = <br></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to convert the above array into object</h3> <script> let resEle = document.querySelector(".result"); let sampleEle = document.querySelector(".sample"); let arr = [['firstName','Rohan'],['lastName','Sharma'],['age',22]]; document.querySelector(".Btn").addEventListener("click", () => { let obj = Object.fromEntries(arr); for(i in obj){ resEle.innerHTML += 'Key = '+i+' : Value = '+obj[i]+ '<br>'; } }); </script> </body> </html>