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

In CoffeeScript, what is the simplest way to check if a key exists in an object?

share|improve this question
Did you read the documentation? obj.key? – Jimmy Cuadra Nov 23 '11 at 13:40

2 Answers

up vote 34 down vote accepted
key of obj

This compiles to JavaScript's key in obj. (CoffeeScript uses of when referring to keys, and in when referring to array values: val in arr will test whether val is in arr.)

thejh's answer is correct if you want to ignore the object's prototype. Jimmy's answer is correct if you want to ignore keys with a null or undefined value.

share|improve this answer
   
most likely own key of obj works, too, to aditionally test .hasOwnProperty(). the “most likely” comes from me not having tried, but this syntax working in comprehensions. – flying sheep Jan 13 at 21:15
@flyingsheep No, it only works in comprehensions. Try it: coffeescript.org/#try:own%20key%20of%20obj – Trevor Burnham Jan 13 at 22:24
ah, ok: own = (prop, obj) -> Object::hasOwnProperty.call obj, prop – flying sheep Jan 14 at 13:33
obj.hasOwnProperty(name)

(to ignore inherited properties)

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.