- Google Apps Script for Beginners
- Serge Gabet
- 181字
- 2021-07-19 18:14:21
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user inputs, and Twitter handles are shown as follows: "As you can notice, we use #name#
to mark the placeholders."
A block of code is set as follows:
var docCopy = DriveApp.getFileById(sharedDocID).makeCopy('menu['+headers[todayInSheet]+']'); menuFolder.addFile(docCopy); DriveApp.getRootFolder().removeFile(docCopy);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
function myAgeInHours(){
var myBirthDate = new Date('1958/02/19 02:00:00').getTime();
myBirthDate = parseInt(myBirthDate/3600000, 10);
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Open the script editor from the Tools menu and write the code snippet we just prepared.".
- Getting Started with Gulp(Second Edition)
- Kubernetes實戰
- Mastering Entity Framework
- 精通軟件性能測試與LoadRunner實戰(第2版)
- Java Web程序設計
- Building an RPG with Unity 2018
- SQL基礎教程(第2版)
- iPhone應用開發從入門到精通
- HTML5開發精要與實例詳解
- ExtJS Web應用程序開發指南第2版
- 分布式數據庫HBase案例教程
- Learning D3.js 5 Mapping(Second Edition)
- 軟件測試(慕課版)
- Java EE輕量級解決方案:S2SH
- Java EE 程序設計