This free javascript helps you to estimate the current world population. This free java script is developed based on simple math calculation, this java script increases 2.4452 people per second.This script mainly used for find the people statistics.
<!--Script by hscripts.com-->
<!-- more scripts @ https://www.hscripts.com -->
<script type="text/javascript">
function counter()
{
popstat=5946422755;
poprate=2.4452;
today=new Date()
statsdate = new Date("February 1, 1999");
offset = today.getTimezoneOffset()*60*1000
diffpop = (( today.getTime() + offset ) - statsdate.getTime() ) / 1000
var newpop = Math.ceil(popstat + (diffpop * poprate));
newpop = "" + newpop;
p1 = newpop.substring(0,1)
p2 = newpop.substring(1,4)
p3 = newpop.substring(4,7)
p4 = newpop.substring(7,10)
var pops= p1 + "," + p2 + "," + p3 + "," + p4;
var popul = document.getElementById("poo");
popul.innerHTML = pops;
setTimeout('counter()',200); } </script>
<!-- Script by hscripts.com -->