Posts by pixies • 56 points
2 posts
-
1
votes1
answer36
viewsA: Which attribute to use to make the entire area of a checkbox selectable?
The 'FOR' you used solves your problem, just need to write it straight. The idea is that you have in your checkbox an ID that when the user clicks on the label it points via the FOR, to the checkbox…
-
3
votes3
answers81
viewsA: Why does this account return a negative number?
Apparently all right with the expression console.log(1 - 3 * 2); [1 - ] [3 * 2] => 3 * 2 => 6 1 - 6 -5 you can think of her like this: (1 - (3*2)) Order of precedence of mathematical…
javascriptanswered pixies 56