Skip to content

Instantly share code, notes, and snippets.

@nrm176
Created September 9, 2020 05:40
Show Gist options
  • Save nrm176/0be7449515f3327f0692b6390361739c to your computer and use it in GitHub Desktop.
Save nrm176/0be7449515f3327f0692b6390361739c to your computer and use it in GitHub Desktop.
  
  // Make a 10 point question and set feedback on it
  var item = FormApp.getActiveForm().addCheckboxItem();
  item.setTitle("What flavors are in neapolitan ice cream?");
  item.setPoints(10);
  
  // chocolate, vanilla, and strawberry are the correct answers
  item.setChoices([
    item.createChoice("chocolate", true),
    item.createChoice("vanilla", true),
    item.createChoice("rum raisin", false),
    item.createChoice("strawberry", true),
    item.createChoice("mint", false)
  ]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment