JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

HTML

<select id=size>
							<option>Выберите размер картины</option>
							<option value="1">40x50</option>
							<option value="1.5" selected>50x70</option>
							<option value="2">70x70</option>
							<option value="2.5">70x100</option>
						</select>

JavaScript

var select = document.getElementById("size");
select.options[1].value = 124;

console.log(select.options[0].value);
console.log(select.options[1].value);
console.log(select.options[2].value);
console.log(select.options[3].value);
console.log(select.options[4].value);