Adds the item to the end of the stimulus item list.
none
Name | Type | Description |
---|---|---|
value | value | The value for the item. |
The appendItem function adds a value to the end of the stimulus or item list.
The following adds an item to the end of the item list of a text stimulus:
<trial myTrial>
/ onTrialEnd= {text.myText.appendItem("Hello world!");}
</trial>
The following adds an item to the end of the item list of a list:
<trial myTrial>
/ onTrialEnd= {list.importantthings.appendItem(values.newvalue);}
</trial>