JavaScript: Display positive numbers with the plus sign(JavaScript:用加号显示正数)
问题描述
如何将正数(如 3)显示为 +3,将负数(如 -5)显示为 -5?所以,如下:
How would I display positive number such as 3 as +3 and negative numbers such -5 as -5? So, as follows:
1、2、3进入+1、+2、+3
1, 2, 3 goes into +1, +2, +3
但如果是的话
-1, -2, -3 然后进入 -1, -2, -3
-1, -2, -3 then goes into -1, -2, -3
推荐答案
你可以使用这样的简单表达式:
You can use a simple expression like this:
(n<0?"":"+") + n
如果数字为正,条件表达式产生一个加号,如果数字为负,则返回一个空字符串.
The conditional expression results in a plus sign if the number is positive, and an empty string if the number is negative.
你还没有指定如何处理零,所以我假设它会显示为 +0
.如果您只想将其显示为 0
,请改用 <=
运算符:
You haven't specified how to handle zero, so I assumed that it would be displayed as +0
. If you want to display it as just 0
, use the <=
operator instead:
(n<=0?"":"+") + n
这篇关于JavaScript:用加号显示正数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JavaScript:用加号显示正数
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01