Here is my code, my question is in the comment:
function (align) {
var column = $(`'<td>'`);
// now i need syntax to set align property to this td element
// column.align = align (not working)
}
As shown, column.align = align is not working.
Where am I going wrong?