1. <legend id='M0Yyi'><style id='M0Yyi'><dir id='M0Yyi'><q id='M0Yyi'></q></dir></style></legend>

    2. <tfoot id='M0Yyi'></tfoot>
      • <bdo id='M0Yyi'></bdo><ul id='M0Yyi'></ul>

      1. <small id='M0Yyi'></small><noframes id='M0Yyi'>

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

        返回带有空格的数字字符串中的最高和最低数字

        Return highest and lowest number in a string of numbers with spaces(返回带有空格的数字字符串中的最高和最低数字)
          1. <legend id='J591H'><style id='J591H'><dir id='J591H'><q id='J591H'></q></dir></style></legend>

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

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

                1. 本文介绍了返回带有空格的数字字符串中的最高和最低数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  假设我有一串用空格分隔的数字,我想返回最高和最低的数字.如何在 JS 中使用函数最好地做到这一点?示例:

                  Let's say I have a string of numbers separated by spaces and I want to return the highest and lowest number. How could that best be done in JS using a function? Example:

                  highestAndLowest("1 2 3 4 5"); // return "5 1"
                  

                  我希望这两个数字都以字符串的形式返回.最小的数字先跟一个空格,然后是最大的数字.

                  I would like the both numbers to be returned in a string. The lowest number first followed by a space then the highest number.

                  这是我目前所拥有的:

                  function myFunction(str) {
                      var tst = str.split(" ");
                      return tst.max();
                  }
                  

                  推荐答案

                  你可以使用 Math.min 和 Math.max,并在数组中使用它们返回结果,试试:

                  You can use Math.min and Math.max, and use them in an array to return the result, try:

                  function highestAndLowest(numbers){
                    numbers = numbers.split(" ");
                    return Math.max.apply(null, numbers) + " " +  Math.min.apply(null, numbers)
                  }
                  
                  document.write(highestAndLowest("1 2 3 4 5"))

                  这篇关于返回带有空格的数字字符串中的最高和最低数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  What are valid deviceNames for Chrome emulation testing with Protractor?(使用 Protractor 进行 Chrome 模拟测试的有效设备名称是什么?)
                  Protractor Check if Element Does Not Exist(量角器检查元素是否不存在)
                  Protractor e2e Tests Login Redirection(Protractor e2e 测试登录重定向)
                  Explain about async/ await in Protractor(解释 Protractor 中的 async/await)
                  Protractor browser.wait doesn#39;t wait(量角器 browser.wait 不等待)
                  How to use Protractor with Angular 2?(如何在 Angular 2 中使用量角器?)
                      <tbody id='jKWoY'></tbody>
                  1. <small id='jKWoY'></small><noframes id='jKWoY'>

                        <bdo id='jKWoY'></bdo><ul id='jKWoY'></ul>

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