I used a for loop to create an array of month in numbers 1-12.
Then, I am trying to use a map array method to create 12 options for each number.
But the options have empty values.
Here's a sample code:
export default ({ experience }) => {
let monthOptions = [];
for (let i = 1; i < 13; i++) {
monthOptions.push(i);
}
return (
<select name="month" id="month">
{
monthOptions.map((month) => {
return <option value={month} />;
})
}
</select>
)
};
The display value is taken from the
label
attribute or from the tag content, and it's not the same as the actual value that will be passed to the event handlers. To display a value in the options, include it when rendering the tag:Or use the
label
attribute:Example:
You can shorten your code a bit, using
Array.from()
.Note: in this example, you can see that the
value
, and the display value are not identical.