- 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.".
- 多媒體CAI課件設計與制作導論(第二版)
- HTML5+CSS3王者歸來
- Oracle WebLogic Server 12c:First Look
- Objective-C應用開發全程實錄
- 零基礎玩轉區塊鏈
- Apache Spark 2.x Machine Learning Cookbook
- 深入淺出Windows API程序設計:編程基礎篇
- Java游戲服務器架構實戰
- SQL Server從入門到精通(第3版)
- C# 8.0核心技術指南(原書第8版)
- PHP+Ajax+jQuery網站開發項目式教程
- Julia 1.0 Programming Complete Reference Guide
- Deep Learning with R Cookbook
- Python數據可視化之美:專業圖表繪制指南(全彩)
- Java高并發編程詳解:深入理解并發核心庫