Why is it listed here :
under "deprecatio n" ?
Without it, how is an anonymous function() going to call itself
(recursively) ?
I use to write timers like this :
setTimeout( function () {
(...)
setTimeout( arguments.calle e, ms );
}, ms );
How am I suppossed to do that without arguments.calle e ?
Thanks,
--
Jorge.
under "deprecatio n" ?
Without it, how is an anonymous function() going to call itself
(recursively) ?
I use to write timers like this :
setTimeout( function () {
(...)
setTimeout( arguments.calle e, ms );
}, ms );
How am I suppossed to do that without arguments.calle e ?
Thanks,
--
Jorge.
Comment