Question 8
Consider the following HTML:
And JavaScript code:
What are the values of id and action respectively?
id = 42 (number), action = "delete" (string)
id = 42 (string), action = "delete" (string)
id = undefined, action = undefined
id = 42 (number), action = undefined