选择题1459/1593输出什么?

1const person = { 2 name: "Lydia Hallie", 3 hobbies: ["coding"] 4}; 5 6function addHobby(hobby, hobbies = person.hobbies) { 7 hobbies.push(hobby); 8 return hobbies; 9} 10 11addHobby("running", []); 12addHobby("dancing"); 13addHobby("baking", person.hobbies); 14 15console.log(person.hobbies);
难度:
2021-07-02 创建

本题为单选题”

参考答案:

正确选项:C:["coding", "dancing", "baking"]

函数 addHobby 接受两个参数,hobbyhobbies,其中 hobbies 的默认值是 person 对象中的 hobbies 属性。

首先,我们调用函数 addHobby,并给 hobby 传递 "running" 以及给 hobbies 传递一个空数组。因为我们给 hobbies 传递了空数组,"running" 被添加到这个空数组,该操作不影响 person 对象中的 hobbies 属性。

然后,我们调用函数 addHobby,并给 hobby 传递 "dancing"。我们不向 hobbies 传递值,因此它获取其默认值 —— 对象 person 的属性 hobbies。我们向数组 person.hobbies push dancing

最后,我们调用函数 addHobby,并向 hobby 传递值 "baking",并且向 hobbies 传递 person.hobbies。我们向数组 person.hobbies push dancing

pushing dancingbaking 之后,person.hobbies 的值为 ["coding", "dancing", "baking"]

最近更新时间:2021-12-25

赞赏支持

预览

题库维护不易,您的支持就是我们最大的动力!