Can an HTML checkbox value hold a boolean instead of a string?
HTML Input values hold strings.
For example: This holds the string "yes".
However for checkboxes sometimes it would be convenient if the value was the boolean True. Obviously the value can be transformed into a boolean after the form has been submitted. However is there a way to store the value as a boolean to begin with?