• <bdo id='4rqzf'></bdo><ul id='4rqzf'></ul>
  • <i id='4rqzf'><tr id='4rqzf'><dt id='4rqzf'><q id='4rqzf'><span id='4rqzf'><b id='4rqzf'><form id='4rqzf'><ins id='4rqzf'></ins><ul id='4rqzf'></ul><sub id='4rqzf'></sub></form><legend id='4rqzf'></legend><bdo id='4rqzf'><pre id='4rqzf'><center id='4rqzf'></center></pre></bdo></b><th id='4rqzf'></th></span></q></dt></tr></i><div id='4rqzf'><tfoot id='4rqzf'></tfoot><dl id='4rqzf'><fieldset id='4rqzf'></fieldset></dl></div>

      1. <small id='4rqzf'></small><noframes id='4rqzf'>

      2. <legend id='4rqzf'><style id='4rqzf'><dir id='4rqzf'><q id='4rqzf'></q></dir></style></legend>
      3. <tfoot id='4rqzf'></tfoot>

        JS 构造函数中的返回语句

        时间:2023-09-04

        <i id='8Qd7m'><tr id='8Qd7m'><dt id='8Qd7m'><q id='8Qd7m'><span id='8Qd7m'><b id='8Qd7m'><form id='8Qd7m'><ins id='8Qd7m'></ins><ul id='8Qd7m'></ul><sub id='8Qd7m'></sub></form><legend id='8Qd7m'></legend><bdo id='8Qd7m'><pre id='8Qd7m'><center id='8Qd7m'></center></pre></bdo></b><th id='8Qd7m'></th></span></q></dt></tr></i><div id='8Qd7m'><tfoot id='8Qd7m'></tfoot><dl id='8Qd7m'><fieldset id='8Qd7m'></fieldset></dl></div>
          <bdo id='8Qd7m'></bdo><ul id='8Qd7m'></ul>
            • <legend id='8Qd7m'><style id='8Qd7m'><dir id='8Qd7m'><q id='8Qd7m'></q></dir></style></legend><tfoot id='8Qd7m'></tfoot>

                    <tbody id='8Qd7m'></tbody>

                  <small id='8Qd7m'></small><noframes id='8Qd7m'>

                  本文介绍了JS 构造函数中的返回语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当 JavaScript 函数体中的 return 语句用作新对象的构造函数时(带有 'new' 关键字)有什么作用?

                  What is the effect of a return statement in the body of JavaScript function when it's used as a constructor for a new object(with 'new' keyword)?

                  推荐答案

                  通常return简单的退出构造函数.但是,如果返回的值是一个 Object,则它被用作 new 表达式的值.

                  Usually return simply exits the constructor. However, if the returned value is an Object, it is used as the new expression's value.

                  考虑:

                  function f() {
                     this.x = 1;
                     return;
                  }
                  alert((new f()).x);
                  

                  显示 1,但是

                  function f() {
                     this.x = 1;
                     return { x: 2};
                  }
                  alert((new f()).x);
                  

                  显示 2.

                  这篇关于JS 构造函数中的返回语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:setInterval 内的返回值 下一篇:在 JavaScript 中,为什么是“0"?等于假,但是当通过“如果"测试时,它本身不是假的?

                  相关文章

                1. <i id='l1wFs'><tr id='l1wFs'><dt id='l1wFs'><q id='l1wFs'><span id='l1wFs'><b id='l1wFs'><form id='l1wFs'><ins id='l1wFs'></ins><ul id='l1wFs'></ul><sub id='l1wFs'></sub></form><legend id='l1wFs'></legend><bdo id='l1wFs'><pre id='l1wFs'><center id='l1wFs'></center></pre></bdo></b><th id='l1wFs'></th></span></q></dt></tr></i><div id='l1wFs'><tfoot id='l1wFs'></tfoot><dl id='l1wFs'><fieldset id='l1wFs'></fieldset></dl></div>
                2. <tfoot id='l1wFs'></tfoot>

                    <legend id='l1wFs'><style id='l1wFs'><dir id='l1wFs'><q id='l1wFs'></q></dir></style></legend>
                      <bdo id='l1wFs'></bdo><ul id='l1wFs'></ul>

                    <small id='l1wFs'></small><noframes id='l1wFs'>