Javascript:从对象函数获取键值

时间:2017-04-11 03:35:29

标签: javascript function object

任务是从对象函数中获取一个键值以打印到控制台,但有一点麻烦。

var chosenColor = function getThingsByColor(color){

  var things = {

    red: "This is a red thing",
    blue: "This is a blue thing",
    orange: "This is an orange thing"

  };

  return things[color] || "Sorry no color found";

}

coonsole.log(chosenColor('red'));

结果是红色未定义。

2 个答案:

答案 0 :(得分:0)

enter image description here

算法很好。 coonsole =>控制台?

答案 1 :(得分:0)

您的功能正常。我假设您没有看到控制台中打印出的结果。确保你拥有全部'在开发工具中为控制台选择了标签