Can I put similar methods in an associative aray like this?
var function_hold = {
function1: function(){}
function2: function (){}
};
If not,
How do I group similar methods?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Similarly as you would with any other object-oriented programming language, you group functionality in objects. This works in JavaScript as well.
Your code actually creates an object. Alternatively you can use JavaScript’s prototype mechanism.
You then call it like