I have JavaScript variable as a literal:

var global = {
    getTime : function() {
        var currentDate = new Date();
        return currentDate.getTime();
    }
};

And I wish to extend this literals with other different functions, which are going to be created as variables:

var doSomething = function(param){
    $("#" + param).hide();
    return "hidden";
}


How can I extend my literal with a new variable, which holds a function?!
At the end I wish to use this in such a way:

alert( global.doSomething("element_id") );
link|improve this question

57% accept rate
feedback

3 Answers

up vote 2 down vote accepted

To extend your global variable with the method doSomething, you should just do this:

global.doSomething = doSomething;

http://jsfiddle.net/nslr/nADQW/

link|improve this answer
feedback
global.doSomething = function(param){

or

var doSomething = function(param){ ...
global.doSomething = doSomething;
link|improve this answer
feedback

var global = { dothis: function() { alert('this'); } }

var that = function() { alert('that'); };

var global2 = { doSomething: that };

$.extend(global, global2);

$('#test').click(function() { global.doSomething(); });

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.