Home > Backend Development > PHP Tutorial > javascript - 请问这样的return是什么写法

javascript - 请问这样的return是什么写法

WBOY
Release: 2016-06-06 20:34:12
Original
1063 people have browsed it

我印象中记得看过某断代码,他的返回大概是

<code>function a{
。。。。
    return{
        ...
        ...
        ...
        ...
    }
}
</code>
Copy after login
Copy after login

具体怎么写忘记了,返回中有 花括号 是什么意思呢,能不能写个例子

回复内容:

我印象中记得看过某断代码,他的返回大概是

<code>function a{
。。。。
    return{
        ...
        ...
        ...
        ...
    }
}
</code>
Copy after login
Copy after login

具体怎么写忘记了,返回中有 花括号 是什么意思呢,能不能写个例子

返回一个对象

<code>function test(){
    return {
         name:"test",
         age:23
    }
}

var obj = test();
alert(obj.name);   //test
</code>
Copy after login

有花括号代码里面是一个对象,如

<code>function a (){
    return {
        b: "hello,world"
    }
}
</code>
Copy after login

然后

<code>> a().b
"hello,world"
</code>
Copy after login

这里的b也可以是一个方法

<code>function a (){
return {
    b: function(){
        console.log("hello,world")
}}}
</code>
Copy after login

{} 定义对象字面量

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template