- 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.".
- 少兒人工智能趣味入門:Scratch 3.0動畫與游戲編程
- Python科學計算(第2版)
- Spring 5.0 By Example
- Java面向對象軟件開發
- HBase從入門到實戰
- 老“碼”識途
- 零基礎學Java(第4版)
- Xamarin.Forms Projects
- CKA/CKAD應試教程:從Docker到Kubernetes完全攻略
- INSTANT OpenNMS Starter
- R大數據分析實用指南
- Scientific Computing with Scala
- OpenGL Data Visualization Cookbook
- Unity 2018 Augmented Reality Projects
- Xcode 6 Essentials