A select can be used to select a single element from a list:

{{ opt }}

{{ neighborhood ? 'You selected ' + neighborhood : 'You haven\'t selected a neighborhood yet' }}

A select can also specify its own label and be used to pick multiple entries:

{{ multiNeighborhood.length ? multiNeighborhood.join(', ') : 'Choose some' }} {{ opt }}

{{ multiNeighborhood ? 'You selected ' + multiNeighborhood : 'You haven\'t selected anything yet' }}