gpt4 book ai didi

javascript - 对象字面量中带有空格的属性名称

转载 作者:行者123 更新时间:2023-11-30 07:24:37 25 4
gpt4 key购买 nike

我只是想知道,“一”、“二”、“三”这些东西,可以有一个空格吗?所以不是“一”而是“一喵”?

var meow    = { one:        function (t) { return "a"; },
two: function (t) { return "b"; },
three: function (t) { return "c"; }
};

最佳答案

当然,属性名称中可以有空格,但是你必须将它们括在 " 中:

var meow    = {
"one meow": function (t) { return "a"; },
two: function (t) { return "b"; },
three: function (t) { return "c"; }
};

以后要访问该属性时,请使用括号语法:

console.log( meow["one meow"]() );

关于javascript - 对象字面量中带有空格的属性名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21724158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com