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

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

          <bdo id='XNBgm'></bdo><ul id='XNBgm'></ul>
        <tfoot id='XNBgm'></tfoot>

        <i id='XNBgm'><tr id='XNBgm'><dt id='XNBgm'><q id='XNBgm'><span id='XNBgm'><b id='XNBgm'><form id='XNBgm'><ins id='XNBgm'></ins><ul id='XNBgm'></ul><sub id='XNBgm'></sub></form><legend id='XNBgm'></legend><bdo id='XNBgm'><pre id='XNBgm'><center id='XNBgm'></center></pre></bdo></b><th id='XNBgm'></th></span></q></dt></tr></i><div id='XNBgm'><tfoot id='XNBgm'></tfoot><dl id='XNBgm'><fieldset id='XNBgm'></fieldset></dl></div>
      1. CoffeeScript 中的三元运算

        时间:2024-04-20

            <tbody id='9Rmmx'></tbody>
          1. <tfoot id='9Rmmx'></tfoot>

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

            <small id='9Rmmx'></small><noframes id='9Rmmx'>

            • <legend id='9Rmmx'><style id='9Rmmx'><dir id='9Rmmx'><q id='9Rmmx'></q></dir></style></legend>

                  <bdo id='9Rmmx'></bdo><ul id='9Rmmx'></ul>
                • 本文介绍了CoffeeScript 中的三元运算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要根据条件为 a 设置值.

                  I need to set value to a that depends on a condition.

                  使用 CoffeeScript 执行此操作的最短方法是什么?

                  What is the shortest way to do this with CoffeeScript?

                  例如这就是我在 JavaScript 中的做法:

                  E.g. this is how I'd do it in JavaScript:

                  a = true  ? 5 : 10  # => a = 5
                  a = false ? 5 : 10  # => a = 10
                  

                  推荐答案

                  由于一切都是表达式,因此会产生一个值,因此您可以使用 if/else.

                  Since everything is an expression, and thus results in a value, you can just use if/else.

                  a = if true then 5 else 10
                  a = if false then 5 else 10
                  

                  您可以在这里查看更多关于表达式示例的信息.

                  You can see more about expression examples here.

                  这篇关于CoffeeScript 中的三元运算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 javascript 中创建一个 ISO 日期对象 下一篇:从 JavaScript 文件或 REPL 中 require()'ing CoffeeScript 文件

                  相关文章

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

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

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

                      • <bdo id='euudn'></bdo><ul id='euudn'></ul>
                      <tfoot id='euudn'></tfoot>