```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Destructuring Example</title> </head> <body> <script> const person = {name: 'alice', age: 25, city: 'new york'}; const {name, age} = person; const sentence = `姓名是 ${name},年龄是 ${age}。`; console.log(sentence); </script> </body> </html> ``` [2024-10-26 23:27:20 | AI写代码神器 | 159点数解答]