I am trying to write multiple new records to a table. The docs suggest doing this like so:
table.createRecordsAsync([{'My field name': '1'}, {'My field name': '2'}, {'My field name': '3'}]);
In my code I have the following test:
table.createRecordsA...