I have a simple script that emails the results of a Google Drive form submission. One of the questions in the form has multiple choice checkboxes. I am using e.namedValues to gr
var multiple = e.namedValues['Multiple Choice Question'].toString();
var choicesSelected = multiple.split(',');
multiple ='';
for(var i in choicesSelected){
multiple += choicesSelected[i] + '\n' ;
}
for (var i in multiple){
Logger.log(multiple[i]);
}