vote up 0 vote down star

I have the following 2 lines of code:

var minusID = settingID + '-minus';
$('#' + minusID).removeClass("selected");

How can I efficiently combine this into one line?

Thanks

flag

42% accept rate

1 Answer

vote up 7 vote down check
$('#' + settingID + '-minus').removeClass("selected");

Can't think of anything much better than that, but you shouldn't worry about that, lines-of-code isn't really a concern any more...

link|flag
1  
In fact, I would argue that readability (and thus maintainability) is a much bigger concern than number of lines. – cpharmston Aug 30 at 20:03
1  
I really don't think that this is any harder to read, and we don't have an extra variable hanging around that doesn't carry it's own weight. +1 – Rob Aug 30 at 20:05
thanks all that worked for what I was looking for. – nobosh Aug 30 at 20:55

Your Answer

Get an OpenID
or

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