/** * Prints the title of the sample document: * https://docs.google.com/document/d/195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE/edit * @see https://developers.google.com/docs/api/reference/rest/v1/documents/get */functionprintDocTitle(){constdocumentId="195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE";constdoc=Docs.Documents.get(documentId,{includeTabsContent:true});console.log(`The title of the doc is: ${doc.title}`);}