Printing to the console in Google Apps Script?

前端 未结 7 823
迷失自我
迷失自我 2021-01-31 01:13

I am very new to programming (have taken some of the JS courses on Codecademy). I am trying to create a simple script to determine, if given a spreadsheet with results from a po

7条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-31 01:31

    Updated for 2020

    In February of 2020, Google announced a major upgrade to the built-in Google Apps Script IDE, and it now supports console.log(). So, you can now use both:

    1. Logger.log()
    2. console.log()

    Happy coding!

提交回复
热议问题