TypeError: blocks.append is not a function

@wakecarter, a solution that allows append to be used in the code components is to add the Array push method to the Array prototype / base class in the Begin Experiment code tab.

Array.prototype.append = [].push
1 Like