Redirect to any page after 5 seconds in Javascript

JavaScript
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
Source

Also in JavaScript: