🔰Event
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
browser ⟩ event
the object that
is asscociated with a particular event
contains details about that event
is passed as an argument to the event handler.
properties of an Event object
type
(string) - event.type.
target
() -
object on which the event occurred. ()
currentTarget
() -
the object on which the current handler was registered.
(in the handler, this
=== event..)
timeStamp
- relative timestamp (in ms).
isTrusted
- event dispatched by browser (true
) or script (false
).