• <small id='31QgU'></small><noframes id='31QgU'>

    <tfoot id='31QgU'></tfoot>

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

        用于比较大于或小于数字的值的 switch 语句

        时间:2023-09-07
          <bdo id='2x3tg'></bdo><ul id='2x3tg'></ul>
          <i id='2x3tg'><tr id='2x3tg'><dt id='2x3tg'><q id='2x3tg'><span id='2x3tg'><b id='2x3tg'><form id='2x3tg'><ins id='2x3tg'></ins><ul id='2x3tg'></ul><sub id='2x3tg'></sub></form><legend id='2x3tg'></legend><bdo id='2x3tg'><pre id='2x3tg'><center id='2x3tg'></center></pre></bdo></b><th id='2x3tg'></th></span></q></dt></tr></i><div id='2x3tg'><tfoot id='2x3tg'></tfoot><dl id='2x3tg'><fieldset id='2x3tg'></fieldset></dl></div>
            <tbody id='2x3tg'></tbody>
          <tfoot id='2x3tg'></tfoot>

          • <small id='2x3tg'></small><noframes id='2x3tg'>

              • <legend id='2x3tg'><style id='2x3tg'><dir id='2x3tg'><q id='2x3tg'></q></dir></style></legend>
                  本文介绍了用于比较大于或小于数字的值的 switch 语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在我正在编写的一些简单代码中使用 switch 语句.

                  I want to use the switch statement in some simple code i'm writing.

                  我正在尝试将括号中的变量与值进行比较 <13>= 13.

                  I'm trying to compare the variable in the parenthesis with values either < 13 or >= 13.

                  这可以使用 Switch 吗?

                  var age = prompt("Enter you age");
                  switch (age) {
                      case <13:
                          alert("You must be 13 or older to play");
                          break;
                      case >=13:
                          alert("You are old enough to play");
                          break;
                  }
                  

                  推荐答案

                  直接不可能,但间接你可以这样做

                  Directly it's not possible but indirectly you can do this

                  这样试试

                  switch (true) {
                      case (age < 13):
                          alert("You must be 13 or older to play");
                          break;
                      case (age >= 13):
                          alert("You are old enough to play");
                          break;
                  }
                  

                  这里的 switch 总是会尝试找到真正的值.将首先返回 true 的情况将切换到该情况.

                  Here switch will always try to find true value. the case which will return first true it'll switch to that.

                  假设如果年龄小于 13 岁,这意味着该案例将为真,那么它将切换到该案例.

                  Suppose if age is less then 13 that's means that case will have true then it'll switch to that case.

                  这篇关于用于比较大于或小于数字的值的 switch 语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:JavaScript 开关奇怪的行为 下一篇:if-else、switch 或 map based 条件的性能

                  相关文章

                  • <bdo id='t8Ile'></bdo><ul id='t8Ile'></ul>
                1. <tfoot id='t8Ile'></tfoot>

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

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

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