JavaScript:用加号显示正数

JavaScript: Display positive numbers with the plus sign(JavaScript:用加号显示正数)
本文介绍了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:用加号显示正数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)