javascript - 请问这样的return是什么写法
程序员文章站
2022-05-28 21:53:53
...
我印象中记得看过某断代码,他的返回大概是
function a{
。。。。
return{
...
...
...
...
}
}
具体怎么写忘记了,返回中有 花括号 是什么意思呢,能不能写个例子
回复内容:
我印象中记得看过某断代码,他的返回大概是
function a{
。。。。
return{
...
...
...
...
}
}
具体怎么写忘记了,返回中有 花括号 是什么意思呢,能不能写个例子
返回一个对象
function test(){
return {
name:"test",
age:23
}
}
var obj = test();
alert(obj.name); //test
有花括号代码里面是一个对象,如
function a (){
return {
b: "hello,world"
}
}
然后
> a().b
"hello,world"
这里的b也可以是一个方法
function a (){
return {
b: function(){
console.log("hello,world")
}}}
{}
定义对象字面量
推荐阅读
-
javascript - 请问chrome有没有提供这样的API
-
javascript - 请问JS函数中[]的含义是什么?
-
javascript - 请问这样的return是什么写法
-
javascript - jQuery('#confirm').removeAttr('disabled');这样的写法不能兼容IE系列,请给出兼容任何浏览器写法?
-
javascript - 请问这样的return是什么写法
-
javascript - jQuery('#confirm').removeAttr('disabled');这样的写法不能兼容IE系列,请给出兼容任何浏览器写法?
-
我在Ngnix日志里面查到这样的连接,请问这种是什么乱码
-
我在Ngnix日志里面查到这样的连接,请问这种是什么乱码
-
javascript - 请问JS函数中[]的含义是什么?
-
javascript - 请问这段js代码的变量对象是什么?