Public Method Items API

attemptedQuestions()

Obtains a list of Question references that have been attempted in the current Activity.

You would want to use this method so that you can update the attempted status for Questions in your own application interface, for example.

Examples

var myAttemptedQuestions = itemsApp.attemptedQuestions();
console.log(myAttemptedQuestions);

Arguments

None.

Return value

array[string]

An array of Question references (strings) that have been attempted.

Related articles

  • The attemptedItems() method, the method used to get attempted Items in the Activity.
Was this article helpful?