While looking at the jslint code conventions I saw this line:
total = subtotal + (+myInput.value);
What is the purpose of the second '+'?
|
4
|
While looking at the jslint code conventions I saw this line:
What is the purpose of the second '+'?
|
||
|
|
|
|
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:
|
||||||||||||
|
|
|
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 For example,
will convert
Similar to this use of |
|||
|
|
|
|
The unary + operator turns things into a number. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|