I'm working with some Javascript code:
document.getElementById("Grid").style.gridTemplateRows = "repeat(3, 2fr)";
I'm trying to insert a variable as an argument to modify my CSS style. When I attempt the following:
"repeat(${MyVariable}, 2fr)";
it doesn't seem to work. Can anyone help me troubleshoot this?