Assuming I have the following variables:
var key = "Section";
course.key = "101";
After running this code, I encounter an error stating that course.key is unidentified
. My intention is to set course.Section = "101"
. Is there a way to pass the value of key in the second line?