I wouldn't use it in the manner that you are - as I would always prefer objects to store singular values as a collection, i.e:
var defaults = {
"price" : 2.9
};
(The reason for this is that it is more exportable, more portable, and with JavaScript there is no way to properly delete a variable once it has been created - whereas you can remove as many keys from an object as you like)
However, I do use what you are doing quite a bit in if statements. There are lots of coders out there that would complain about it, but for me, assigning the result of something to a var - that you are then testing for existence - and then using within the same if block makes perfect sense, and in my eyes leads to more readable code as everything is located in the same area:
var view;
if ( (view = someClass.thatChecksAndLoads('a view')) ) {
/// do something with the view
}
The above lends itself well to situations where you have multiple ways of getting to your view object, for example:
if ( (view = someClass.thatChecksAndLoads('a view')) ) {
/// do something with the view
}
else if ( (view = anotherWay.toLoad('a view')) ) {
/// do something here instead
}
As a side note - just in case anyone is wondering - I'm not just putting in extra brackets for no reason in the above. Quite a few JavaScript compilers (and ActionScript compilers too) will complain / log errors if you have a singular '=' within an if statement. All because they are trying to be helpful just incase you meant '=='... by wrapping the assignment in brackets this normally circumvents the check, or at least it stops the warnings from being issued.