How would I get this in CoffeeScript? This is the JS that I am trying to get :
if (value === undefined) {
return model.get('isCompleted');
}
Basically, When I am trying this :
if value is undefined
model.get 'isCompleted'
I am getting this in the JS :
if (value === void 0) {
model.get('isCompleted');
}
Is there no way to display "undefined" without :
if value is `undefined`
I somehow don't want to use ``.