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

          <bdo id='4iFz3'></bdo><ul id='4iFz3'></ul>

      3. <legend id='4iFz3'><style id='4iFz3'><dir id='4iFz3'><q id='4iFz3'></q></dir></style></legend>

      4. <small id='4iFz3'></small><noframes id='4iFz3'>

        如何在 Javascript 中追加或连接字符串?

        How to append or concat strings in Javascript?(如何在 Javascript 中追加或连接字符串?)

            <tbody id='q95UG'></tbody>
          <tfoot id='q95UG'></tfoot>
            • <bdo id='q95UG'></bdo><ul id='q95UG'></ul>
              <legend id='q95UG'><style id='q95UG'><dir id='q95UG'><q id='q95UG'></q></dir></style></legend>

              • <small id='q95UG'></small><noframes id='q95UG'>

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

                  本文介绍了如何在 Javascript 中追加或连接字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  所以我试图添加到一个字符串,它显示为空.

                  So I'm trying to add to a string and it shows up as empty.

                  var DNA = "TAG";
                  var mRNA = "";
                  
                  m_RNA()
                  
                  function check(a, b, string) {
                    if (string = a) {
                      mRNA.concat(b);
                    }
                  }
                  
                  function m_RNA(){
                    //console.log(DNA)
                    for (var i = 0; i < DNA.length; i++) {
                      console.log("Checking: " + DNA[i]);
                      check("T", "A", DNA[i]);
                      check("A", "U", DNA[i]);
                      check("C", "G", DNA[i]);
                      check("G", "C", DNA[i]);
                      console.log(mRNA);
                    }
                  }
                  

                  它应该在控制台中显示 AUC,但它只是空白.顺便说一下,这是通过 Firefox 实现的.

                  Its supposed to show AUC in the console but its just blank. This is through firefox by the way.

                  推荐答案

                  mRNA.concat(b); 不会改变字符串,它只会计算值.您需要mRNA = mRNA.concat(b)(或mRNA = mRNA + b)来改变mRNA的值.

                  mRNA.concat(b); doesn't mutate the string, it only computes the value. You need tomRNA = mRNA.concat(b) (or mRNA = mRNA + b) to change the value of mRNA.

                  这篇关于如何在 Javascript 中追加或连接字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Toggle HTML radio button by clicking its label(通过单击标签来切换 HTML 单选按钮)
                  Javascript how to change radio button label text?(Javascript如何更改单选按钮标签文本?)
                  JavaScript radio button confirmation(JavaScript 单选按钮确认)
                  How can I automatically select specific radio buttons with Greasemonkey?(如何使用 Greasemonkey 自动选择特定的单选按钮?)
                  AngularJs. Is it possible to deselect HTML “radio” input by click?(AngularJs.是否可以通过单击取消选择 HTML“收音机输入?)
                  Checking Value of Radio Button Group via JavaScript?(通过 JavaScript 检查单选按钮组的值?)

                  <legend id='sXndE'><style id='sXndE'><dir id='sXndE'><q id='sXndE'></q></dir></style></legend>

                    <tbody id='sXndE'></tbody>

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

                      • <bdo id='sXndE'></bdo><ul id='sXndE'></ul>

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

                            <tfoot id='sXndE'></tfoot>