vote up 12 vote down star
4

While looking at the jslint code conventions I saw this line:

total = subtotal + (+myInput.value);

What is the purpose of the second '+'?

flag

5 Answers

vote up 28 vote down check

The unary plus is there for completeness, compared with the familiar unary minus (-x). However it has the side effect, relied upon here, of casting myInput.value into a Number, if it's something else such as a String:

alert(1+'2'); // 12
alert(1+(+'2')); // 3
link|flag
Thanks, I didn't know this notation. I assume this is basically shorthand for parseInt()? – Luke Dennis Mar 4 at 16:37
1  
They're not quite the same, Luke, see here for some information: alexle.net/archives/290 – Chad Birch Mar 4 at 16:39
Plus of course it would be closer to ‘parseFloat’. +-casting supports full floating point number literals, including weirdnesses like +'Infinity'. – bobince Mar 4 at 16:52
actually, the thing (+foo) is closest to is the explicit cast Number(foo) - in fact, they should yield identical results – Christoph Mar 4 at 18:44
Is there any reason why this should be preferred over parseInt? – toast Mar 4 at 19:27
show 5 more comments
vote up 1 vote down

The unary plus operator is, arithmetically speaking, a noop. But like all other purely arithmetic operators, it will convert its argument to JavaScript's number type and can therefore be used as a shorthand for an explicit cast.

Explicit type casting in JavaScript is done via calling the appropriate constructor functions without using the new operator.

For example,

Number(foo)

will convert foo to a primitive of type number, whereas new Number(foo) would additionally create a wrapper object for the primitive and is therefore equivalent to

Object(Number(foo))

Similar to this use of + is the use of !! to convert to boolean type.

link|flag
vote up 4 vote down

The unary + operator turns things into a number.

link|flag
vote up 2 vote down

The + is to typecast it to a number as others have said. It's needed there because form inputs are always string values, and adding a string to another variable concatenates them together into a new string, even if the string looks like a number.

link|flag
vote up 8 vote down

That's called the "unary + operator", it can be used as a quick way to force a variable to be converted to a number, so that it can be used in a math operation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.