Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 10 down vote accepted

Use the javascript parseInt function.

number = parseInt( stringToParse, 10 );

Reference is here: http://www.w3schools.com/jsref/jsref_parseint.asp

Remember, coffeescript is just javascript after it's compiled

share|improve this answer
yes I ended up doing this thank you – pete_w May 23 '12 at 13:36
3  
Be careful about octal numbers when using parseInt. – Corkscreewe May 23 '12 at 13:51
3  
Always specify the radix, e.g. parseInt( stringToParse, 10 ) – Stefan Sep 21 '12 at 13:36

Javascript's parseInt function will achieve this. Remember to set the radix parameter to prevent confusion and ensure predictable behaviour. (E.g. in Coffeescript)

myNewInt = parseInt("176.67", 10)

There's a few good examples in the MDN resources: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/parseInt

share|improve this answer
right, thank you very much – pete_w May 23 '12 at 13:37

You can use the less obvious, more magical, less keyboard-intensive operator +:

+"158"
share|improve this answer
thats pretty cool! I cant find any docs on this feature, where did you learn that? – pete_w May 23 '12 at 13:36
2  
It's not a coffeescript feature, it's a javascript unary operator in the meaning of plus/minus in front of a number. Beware you can run into trouble very fast when using this: a = true; +a++ + +(++a) – Corkscreewe May 23 '12 at 13:49
Does alert(id +"123") and alert(id + "123") yield different results? – pete_w May 24 '12 at 14:40
They're the same – Corkscreewe May 25 '12 at 12:58

It hasn't been documented in the official manual yet, but it seems that cast operators works too:

myString = "12323"
myNumber = (Number) myString
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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