li ID 属性 (ユーザー ID になります) の値を取得し、最終的に変数名の一部として使用する文字列の一部として使用したいと考えています。この変数名を使用して配列を作成します。
私は基本を理解していますが、この魔法を実現するための jQuery/javascript の適切な組み合わせを見つけることができないようです。
jQuery('#user-list li').click(function() {
var userID = jQuery(this).attr("id");
// i want to add the word array to the end of userID
var theVariableName = userID + "Array";
// I want to use this variable to create an array
var theVariableName = new Array();
// I want to continue to use the name throughout my document
theVariableName.push({startTime: 7, endTime: 10});
alert(theVariableName[0].startTime);
});