Items API Methods
attemptedItems()
Obtains an array of Item 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 Items in your own application interface, for example.
Examples
var myAttemptedItems = itemsApp.attemptedItems();
console.log(myAttemptedItems);
Arguments
None.
Return value
Type array[string]
An array of Item references (strings) that have been attempted.
Related articles
- The
attemptedQuestions()
method, the method used to get attempted Questions in the Activity.