ݺߣ

ݺߣShare a Scribd company logo
Window Object
Methods (Timer Related)
Kiprosh
by Shivani
Window Object
Window object is
nothing but an object
of open window in
the browser
Window object
Window Object
All GLOBAL javascript Variable, Function and
Object will automatically will become member
of window Object.
- JS global Variables are Properties of Window Object
- JS global functions are Methods of Window Object
http://codepen.io/shivanibhanwal/pen/GJOqbQ?editors=101
Window object methods (timer related)
Global Variable, Function & Object
Variable: var foovar = Happy; foovar ? window.foovar
Function:document.getElementById(header) ?
window.document.getElementById(header)
Object: var car = {type:"Ritz", model:007, color:"white",
summary : function() {
return this.color +  color  + this.type + " model# " +
this.model; }};
car.summary() ? window.car.summary()
Window properties & methods
Window object have basic
28+ properties
e.g document, innerHeight, innerwidth, name,
parent etc
22+ methods
e.g. alert(), close(), blur(), confirm() etc
WindowTimers Methods
setTimeout() - Call a function or a code snippet after
specified delay
http://codepen.io/shivanibhanwal/pen/xGPEYr?editors=101
window.setTimeout(func, [delay, param1, param2, ...]);
window.setTimeout(code, [delay,]);
func: is function and it will be execute after specified delay
delay: is number of milliseconds that function call be
delayed
param1, param2: params pass to the func
WindowTimers Methods
setInterval() - Call a function or a code snippet
repeatedly with a fix time delay, between the each call of
that function/code.
http://codepen.io/shivanibhanwal/pen/xGPEYr?editors=101
window.setInterval(fn, delay[, param1, param2, ...]);
window.setInterval(code, delay);
fn: Function to execute on an interval
delay: time for which function should wait before each call to fn
params: fn Function parameters
WindowTimers Methods
clearTimeout(timeoutID) - Will prevent the function
defined in setTimeout() from running
timeoutID is the ID of the timeout you wish to clear, as
returned by window.setTimeout().
WindowTimers Methods
clearInterval(intervalID) To cancel repeated action
which was setup using setInterval() function
setInterval() returns intervalID so we need to assign to
variable so that we can cancel the running repeated
function execution.
http://codepen.io/shivanibhanwal/pen/xGPEYr?editors=101
Window object methods (timer related)
Things to remember
 For setInterval and setTimeout use global variables to
save return id (intervalId or timerid). So that you can
cancel the execution
 Pass parameters to the fn function of
setTimeout/setInterval does not work in IE9 and earlier
 However, if we use an anonymous function, it will work
in all browsers e.g.
function mycolor() {
timerId = setTimeout( function(){ setcolor("red"); }, 2000); }
Things to remember
 Multiple concurrent timers can cause performance issue
make sure that you stop/clear other timers while starting
new one.
 Interval can not be 100% accurate and possibility of drop
requests
 Everything is Javascript is running on single thread
 If there are delays then setInterval can execute side by
side without delay
 (Nested) setTimeout will not execute immediately, it will
wait for the earlier execution to finish
Things to remember
 As setInterval does not care whether earlier execution has
finished or not so it can be dangerous in some cases. If
you function throw an error then setInterval will cause
Stack Overflow issue. Because even on exception it will
continue with execution. So instead of setInterval you can
use setTimeout
Reference Links
http://ejohn.org/blog/how-javascript-timers-work/
http://reallifejs.com/brainchunks/repeated-events-timeout-or-
interval/
Questions??
Thank You!

More Related Content

What's hot (20)

Angular Restmod (english version)
Angular Restmod (english version)Angular Restmod (english version)
Angular Restmod (english version)
Marcin Gajda
?
Why You Shouldn't Write OO
Why You Shouldn't Write OO Why You Shouldn't Write OO
Why You Shouldn't Write OO
Yehuda Katz
?
Pyramid of-developer-skills
Pyramid of-developer-skillsPyramid of-developer-skills
Pyramid of-developer-skills
Alexandru Bolboaca
?
Ror rails 2
Ror   rails 2Ror   rails 2
Ror rails 2
ruslan_gatiyatov
?
Impact of the New ORM on Your Modules
Impact of the New ORM on Your ModulesImpact of the New ORM on Your Modules
Impact of the New ORM on Your Modules
Odoo
?
The Ring programming language version 1.8 book - Part 12 of 202
The Ring programming language version 1.8 book - Part 12 of 202The Ring programming language version 1.8 book - Part 12 of 202
The Ring programming language version 1.8 book - Part 12 of 202
Mahmoud Samir Fayed
?
Conditional fields - Olga Riabodzei
Conditional fields - Olga RiabodzeiConditional fields - Olga Riabodzei
Conditional fields - Olga Riabodzei
DrupalCamp Kyiv
?
J querypractice
J querypracticeJ querypractice
J querypractice
Inbal Geffen
?
Anonymous functions in JavaScript
Anonymous functions in JavaScriptAnonymous functions in JavaScript
Anonymous functions in JavaScript
Mohammed Sazid Al Rashid
?
The Ring programming language version 1.9 book - Part 14 of 210
The Ring programming language version 1.9 book - Part 14 of 210The Ring programming language version 1.9 book - Part 14 of 210
The Ring programming language version 1.9 book - Part 14 of 210
Mahmoud Samir Fayed
?
Road to react hooks
Road to react hooksRoad to react hooks
Road to react hooks
Younes (omar) Meliani
?
Clojure functions examples
Clojure functions examplesClojure functions examples
Clojure functions examples
Jackson dos Santos Olveira
?
Operators
OperatorsOperators
Operators
Kumar
?
What the FUF?
What the FUF?What the FUF?
What the FUF?
An Doan
?
Drupal node access system & AUL 7.x.-2.x
Drupal node access system & AUL 7.x.-2.xDrupal node access system & AUL 7.x.-2.x
Drupal node access system & AUL 7.x.-2.x
Oleksandr Milkovskyi
?
10CSL67 CG LAB PROGRAM 10
10CSL67 CG LAB PROGRAM 1010CSL67 CG LAB PROGRAM 10
10CSL67 CG LAB PROGRAM 10
Vanishree Arun
?
JavaScript Operators
JavaScript OperatorsJavaScript Operators
JavaScript Operators
Dr. Jasmine Beulah Gnanadurai
?
Declaring friend function with inline code
Declaring friend function with inline codeDeclaring friend function with inline code
Declaring friend function with inline code
Rajeev Sharan
?
5. hello popescu
5. hello popescu5. hello popescu
5. hello popescu
Razvan Raducanu, PhD
?
CSNB244 Lab5
CSNB244 Lab5CSNB244 Lab5
CSNB244 Lab5
Muhd Mu'izuddin
?

Similar to Window object methods (timer related) (20)

Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development
Mahmoud Hamed Mahmoud
?
Introduction to Griffon
Introduction to GriffonIntroduction to Griffon
Introduction to Griffon
James Williams
?
ProTips DroidCon Paris 2013
ProTips DroidCon Paris 2013ProTips DroidCon Paris 2013
ProTips DroidCon Paris 2013
Mathias Seguy
?
Intro to Javascript
Intro to JavascriptIntro to Javascript
Intro to Javascript
Anjan Banda
?
Reactive Type-safe WebComponents
Reactive Type-safe WebComponentsReactive Type-safe WebComponents
Reactive Type-safe WebComponents
Martin Hochel
?
Android activity, service, and broadcast recievers
Android activity, service, and broadcast recieversAndroid activity, service, and broadcast recievers
Android activity, service, and broadcast recievers
Utkarsh Mankad
?
MOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app developmentMOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app development
anistar sung
?
_ʼW Android
_ʼW Android_ʼW Android
_ʼW Android
㼪(Hsiu-Chi) (Tsai)
?
Android Best Practices
Android Best PracticesAndroid Best Practices
Android Best Practices
Yekmer Simsek
?
The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180
Mahmoud Samir Fayed
?
Javascript quiz. Questions to ask when recruiting developers.
Javascript quiz. Questions to ask when recruiting developers.Javascript quiz. Questions to ask when recruiting developers.
Javascript quiz. Questions to ask when recruiting developers.
Alberto Naranjo
?
Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015
Aleksander Piotrowski
?
OpenCms Days 2014 - User Generated Content in OpenCms 9.5
OpenCms Days 2014 - User Generated Content in OpenCms 9.5OpenCms Days 2014 - User Generated Content in OpenCms 9.5
OpenCms Days 2014 - User Generated Content in OpenCms 9.5
Alkacon Software GmbH & Co. KG
?
E2E testing con nightwatch.js - Drupalcamp Spain 2018
E2E testing con nightwatch.js  - Drupalcamp Spain 2018E2E testing con nightwatch.js  - Drupalcamp Spain 2018
E2E testing con nightwatch.js - Drupalcamp Spain 2018
Salvador Molina (Slv_)
?
What do you mean it needs to be Java based? How jython saved the day.
What do you mean it needs to be Java based? How jython saved the day.What do you mean it needs to be Java based? How jython saved the day.
What do you mean it needs to be Java based? How jython saved the day.
Mark Rees
?
Design Summit - UI Roadmap - Dan Clarizio, Martin Povolny
Design Summit - UI Roadmap - Dan Clarizio, Martin PovolnyDesign Summit - UI Roadmap - Dan Clarizio, Martin Povolny
Design Summit - UI Roadmap - Dan Clarizio, Martin Povolny
ManageIQ
?
The Ring programming language version 1.6 book - Part 73 of 189
The Ring programming language version 1.6 book - Part 73 of 189The Ring programming language version 1.6 book - Part 73 of 189
The Ring programming language version 1.6 book - Part 73 of 189
Mahmoud Samir Fayed
?
Will your code blend? : Toronto Code Camp 2010 : Barry Gervin
Will your code blend? : Toronto Code Camp 2010 : Barry GervinWill your code blend? : Toronto Code Camp 2010 : Barry Gervin
Will your code blend? : Toronto Code Camp 2010 : Barry Gervin
Barry Gervin
?
Porting dei giochi windows phone realizzati con xna sul windows store con mon...
Porting dei giochi windows phone realizzati con xna sul windows store con mon...Porting dei giochi windows phone realizzati con xna sul windows store con mon...
Porting dei giochi windows phone realizzati con xna sul windows store con mon...
Dan Ardelean
?
[FEConf Korea 2017]Angular ?????????? ???????
[FEConf Korea 2017]Angular ?????????? ???????[FEConf Korea 2017]Angular ?????????? ???????
[FEConf Korea 2017]Angular ?????????? ???????
Jeado Ko
?
Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development Windows Store app using XAML and C#: Enterprise Product Development
Windows Store app using XAML and C#: Enterprise Product Development
Mahmoud Hamed Mahmoud
?
ProTips DroidCon Paris 2013
ProTips DroidCon Paris 2013ProTips DroidCon Paris 2013
ProTips DroidCon Paris 2013
Mathias Seguy
?
Intro to Javascript
Intro to JavascriptIntro to Javascript
Intro to Javascript
Anjan Banda
?
Reactive Type-safe WebComponents
Reactive Type-safe WebComponentsReactive Type-safe WebComponents
Reactive Type-safe WebComponents
Martin Hochel
?
Android activity, service, and broadcast recievers
Android activity, service, and broadcast recieversAndroid activity, service, and broadcast recievers
Android activity, service, and broadcast recievers
Utkarsh Mankad
?
MOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app developmentMOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app development
anistar sung
?
The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180The Ring programming language version 1.5.1 book - Part 67 of 180
The Ring programming language version 1.5.1 book - Part 67 of 180
Mahmoud Samir Fayed
?
Javascript quiz. Questions to ask when recruiting developers.
Javascript quiz. Questions to ask when recruiting developers.Javascript quiz. Questions to ask when recruiting developers.
Javascript quiz. Questions to ask when recruiting developers.
Alberto Naranjo
?
Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015
Aleksander Piotrowski
?
OpenCms Days 2014 - User Generated Content in OpenCms 9.5
OpenCms Days 2014 - User Generated Content in OpenCms 9.5OpenCms Days 2014 - User Generated Content in OpenCms 9.5
OpenCms Days 2014 - User Generated Content in OpenCms 9.5
Alkacon Software GmbH & Co. KG
?
E2E testing con nightwatch.js - Drupalcamp Spain 2018
E2E testing con nightwatch.js  - Drupalcamp Spain 2018E2E testing con nightwatch.js  - Drupalcamp Spain 2018
E2E testing con nightwatch.js - Drupalcamp Spain 2018
Salvador Molina (Slv_)
?
What do you mean it needs to be Java based? How jython saved the day.
What do you mean it needs to be Java based? How jython saved the day.What do you mean it needs to be Java based? How jython saved the day.
What do you mean it needs to be Java based? How jython saved the day.
Mark Rees
?
Design Summit - UI Roadmap - Dan Clarizio, Martin Povolny
Design Summit - UI Roadmap - Dan Clarizio, Martin PovolnyDesign Summit - UI Roadmap - Dan Clarizio, Martin Povolny
Design Summit - UI Roadmap - Dan Clarizio, Martin Povolny
ManageIQ
?
The Ring programming language version 1.6 book - Part 73 of 189
The Ring programming language version 1.6 book - Part 73 of 189The Ring programming language version 1.6 book - Part 73 of 189
The Ring programming language version 1.6 book - Part 73 of 189
Mahmoud Samir Fayed
?
Will your code blend? : Toronto Code Camp 2010 : Barry Gervin
Will your code blend? : Toronto Code Camp 2010 : Barry GervinWill your code blend? : Toronto Code Camp 2010 : Barry Gervin
Will your code blend? : Toronto Code Camp 2010 : Barry Gervin
Barry Gervin
?
Porting dei giochi windows phone realizzati con xna sul windows store con mon...
Porting dei giochi windows phone realizzati con xna sul windows store con mon...Porting dei giochi windows phone realizzati con xna sul windows store con mon...
Porting dei giochi windows phone realizzati con xna sul windows store con mon...
Dan Ardelean
?
[FEConf Korea 2017]Angular ?????????? ???????
[FEConf Korea 2017]Angular ?????????? ???????[FEConf Korea 2017]Angular ?????????? ???????
[FEConf Korea 2017]Angular ?????????? ???????
Jeado Ko
?

Recently uploaded (20)

build-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Pirosbuild-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Piros
Geshan Manandhar
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...
IBsolution GmbH
?
The Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App DevelopmentThe Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App Development
7Pillars
?
selection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptxselection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptx
escuyoscherrymae
?
Benefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle CloudBenefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle Cloud
AstuteBusiness
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
?
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Windows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptxWindows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptx
Oddvar Moe
?
Columbia Weather Systems - Product Overview
Columbia Weather Systems - Product OverviewColumbia Weather Systems - Product Overview
Columbia Weather Systems - Product Overview
Columbia Weather Systems
?
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptxHHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HampshireHUG
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
How AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and ComplianceHow AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and Compliance
Chris Bingham
?
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
?
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
?
Harnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdfHarnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdf
rabiabajaj1
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
?
build-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Pirosbuild-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Piros
Geshan Manandhar
?
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
?
SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung fr Unternehmen und ihre Dat...
IBsolution GmbH
?
The Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App DevelopmentThe Future is Here C Learn How to Get Started! Ionic App Development
The Future is Here C Learn How to Get Started! Ionic App Development
7Pillars
?
selection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptxselection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptx
escuyoscherrymae
?
Benefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle CloudBenefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle Cloud
AstuteBusiness
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
?
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Windows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptxWindows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptx
Oddvar Moe
?
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptxHHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HHUG-04-2025-Close-more-deals-from-your-existing-pipeline-FOR SLIDESHARE.pptx
HampshireHUG
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
How AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and ComplianceHow AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and Compliance
Chris Bingham
?
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
?
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
?
Harnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdfHarnessing the Power of AI in Salesforce.pdf
Harnessing the Power of AI in Salesforce.pdf
rabiabajaj1
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
?

Window object methods (timer related)

  • 1. Window Object Methods (Timer Related) Kiprosh by Shivani
  • 2. Window Object Window object is nothing but an object of open window in the browser Window object
  • 3. Window Object All GLOBAL javascript Variable, Function and Object will automatically will become member of window Object. - JS global Variables are Properties of Window Object - JS global functions are Methods of Window Object http://codepen.io/shivanibhanwal/pen/GJOqbQ?editors=101
  • 5. Global Variable, Function & Object Variable: var foovar = Happy; foovar ? window.foovar Function:document.getElementById(header) ? window.document.getElementById(header) Object: var car = {type:"Ritz", model:007, color:"white", summary : function() { return this.color + color + this.type + " model# " + this.model; }}; car.summary() ? window.car.summary()
  • 6. Window properties & methods Window object have basic 28+ properties e.g document, innerHeight, innerwidth, name, parent etc 22+ methods e.g. alert(), close(), blur(), confirm() etc
  • 7. WindowTimers Methods setTimeout() - Call a function or a code snippet after specified delay http://codepen.io/shivanibhanwal/pen/xGPEYr?editors=101 window.setTimeout(func, [delay, param1, param2, ...]); window.setTimeout(code, [delay,]); func: is function and it will be execute after specified delay delay: is number of milliseconds that function call be delayed param1, param2: params pass to the func
  • 8. WindowTimers Methods setInterval() - Call a function or a code snippet repeatedly with a fix time delay, between the each call of that function/code. http://codepen.io/shivanibhanwal/pen/xGPEYr?editors=101 window.setInterval(fn, delay[, param1, param2, ...]); window.setInterval(code, delay); fn: Function to execute on an interval delay: time for which function should wait before each call to fn params: fn Function parameters
  • 9. WindowTimers Methods clearTimeout(timeoutID) - Will prevent the function defined in setTimeout() from running timeoutID is the ID of the timeout you wish to clear, as returned by window.setTimeout().
  • 10. WindowTimers Methods clearInterval(intervalID) To cancel repeated action which was setup using setInterval() function setInterval() returns intervalID so we need to assign to variable so that we can cancel the running repeated function execution. http://codepen.io/shivanibhanwal/pen/xGPEYr?editors=101
  • 12. Things to remember For setInterval and setTimeout use global variables to save return id (intervalId or timerid). So that you can cancel the execution Pass parameters to the fn function of setTimeout/setInterval does not work in IE9 and earlier However, if we use an anonymous function, it will work in all browsers e.g. function mycolor() { timerId = setTimeout( function(){ setcolor("red"); }, 2000); }
  • 13. Things to remember Multiple concurrent timers can cause performance issue make sure that you stop/clear other timers while starting new one. Interval can not be 100% accurate and possibility of drop requests Everything is Javascript is running on single thread If there are delays then setInterval can execute side by side without delay (Nested) setTimeout will not execute immediately, it will wait for the earlier execution to finish
  • 14. Things to remember As setInterval does not care whether earlier execution has finished or not so it can be dangerous in some cases. If you function throw an error then setInterval will cause Stack Overflow issue. Because even on exception it will continue with execution. So instead of setInterval you can use setTimeout