I am building a JSON object that is sent in a POST request. This object has properties that need to be converted from string type to integer type before sending. How does one do that with coffeescript?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the javascript
Reference is here: http://www.w3schools.com/jsref/jsref_parseint.asp Remember, coffeescript is just javascript after it's compiled |
|||||||||||
|
|
Javascript's parseInt function will achieve this. Remember to set the radix parameter to prevent confusion and ensure predictable behaviour. (E.g. in Coffeescript)
There's a few good examples in the MDN resources: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/parseInt |
|||
|
|
|
You can use the less obvious, more magical, less keyboard-intensive operator +:
|
|||||||||||
|
|
It hasn't been documented in the official manual yet, but it seems that cast operators works too:
|
|||
|
|