I am writing an email to some colleagues and trying to describe the pattern that jQuery uses to pass parameters, which is to encapsulate them in an "options object", like so:
var options = { chartType: "line", color: "red", width: 200 };
jQuery("#something").somePlugin(options);
But I'm having a hard time calling them "options objects"... seems like there should be a more formal name. What would you call them?
Thanks!