Creating Your First Cognitive Task
1. Initiating a New Task
2. Accessing the Code Editor
3. Crafting Your Task
const jsPsych = initJsPsych();
const hello_trial = {
type: jsPsychHtmlKeyboardResponse,
stimulus: 'Hello world!'
}
jsPsych.run([hello_trial]);4. Live Preview and Auto-save
5. Enhancing Task Flexibility
6. Testing Your Task
7. Accessing Your Data
Last updated