For radios having different name attribute like(code is in pug format)
input.radio.(name='value1' type='radio')
input.radio(name='value2' type='radio')
how to select all of these with on selector, something like
.radio[name = 'value1'], .radio[name= 'value2']{code}
but if I do like this the code gets too long for more radios. Is there any other way to do this ?