The apply() method calls a function with a given this value and arguments provided as an array (or an array-like object).
The call() method calls a function with a given this value and arguments provided individually.
var tickerOne = {
count : 1,
getCount : function(){