xxxxxxxxxx
<!-- The second value will be selected initially -->
<select name="select">
<option value="value1">Value 1</option>
<option value="value2" selected>Value 2</option>
<option value="value3">Value 3</option>
</select>
xxxxxxxxxx
// Selecting elements with a CSS selector in HTML using JavaScript
const elements = document.querySelectorAll('selector');
// Modifying the selected elements
elements.forEach(element => {
// Perform desired actions on each selected element
});