My goal is to create a chainable object, but I am struggling to implement this in a function.
This is the functionality I desire:
$donate.ga('testing').go(value);
The code for my object currently appears as follows:
var $donate = {
ga: function (value) {
}
};