Remove comma after e.g. based on feedback

This commit is contained in:
Zearin 2021-02-02 12:49:33 -05:00 committed by GitHub
parent 4711ee4e85
commit f0145341c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -182,7 +182,7 @@ A `<select>` element has 3 important properties:
They provide three different ways of setting a value for a `<select>`:
1. Find the corresponding `<option>` element (e.g., among `select.options`) and set its `option.selected` to `true`.
1. Find the corresponding `<option>` element (e.g. among `select.options`) and set its `option.selected` to `true`.
2. If we know a new value: set `select.value` to the new value.
3. If we know the new option number: set `select.selectedIndex` to that number.