Merge pull request #2868 from vabushkevich/patch-1

Add mention of radio buttons
This commit is contained in:
Ilya Kantor 2022-02-18 17:41:35 +03:00 committed by GitHub
commit 54bc5776a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,7 +155,7 @@ Let's talk about form controls.
### input and textarea
We can access their value as `input.value` (string) or `input.checked` (boolean) for checkboxes.
We can access their value as `input.value` (string) or `input.checked` (boolean) for checkboxes and radio buttons.
Like this: