countUp.js is a dependency-free, lightweight JavaScript "class" that can be used to quickly create animations that display numerical data in a more interesting way.
Current stars:
var options = {
useEasing : true,
useGrouping : true,
separator : ',',
decimal : '.'
}
var demo = new countUp("myTargetElement", 24.02, 94.62, 0, 2, options);
demo.start();