DEV Community

Discussion on: How to send data to a Google spreadsheet, in 2 seconds?

Collapse
 
meenatoor1 profile image
Meena Toor

This is so cool corentin.

In theory, could it mean that you can populate linkedin jobs as they are posted, to the g ss?

Or is it limited to just names?

Collapse
 
frenchcooc profile image
Corentin

Hi Meena! You can pass whatever data you want. It just has to be formatted as a two-dimensional array:

const data = [
  // First row
  ["Content for A1","Content for A2","Content for A3", "..."],
  // Second row
  ["B1","B2","B3", "..."]
  // Third row... 
]

Happy coding 👩‍💻