JavaScript의 Object.fromEntries() 메서드는 배열과 같은 iterable, 키 값 쌍이 있는 맵을 객체로 변환하는 데 사용됩니다.
다음은 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>