Core JavaScript 1.5 Reference:Global Objects:Object:unwatch
From MDC
Non-standard
Contents |
[edit] Summary
Removes a watchpoint set with the watch method.
| Method of Object | |
| Implemented in: | JavaScript 1.2, NES3.0 |
[edit] Syntax
unwatch(prop)
[edit] Parameters
-
prop - The name of a property of the object.
[edit] Description
The JavaScript debugger has functionality similar to that provided by this method, as well as other debugging options. For information on the debugger, see Venkman.
By default, this method is inherited by every object descended from Object.
[edit] Examples
See watch.