- 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.".
- Java范例大全
- UML和模式應(yīng)用(原書第3版)
- 自己動(dòng)手實(shí)現(xiàn)Lua:虛擬機(jī)、編譯器和標(biāo)準(zhǔn)庫
- Linux C/C++服務(wù)器開發(fā)實(shí)踐
- JavaScript 網(wǎng)頁編程從入門到精通 (清華社"視頻大講堂"大系·網(wǎng)絡(luò)開發(fā)視頻大講堂)
- Java 9 Programming Blueprints
- Visual Basic程序設(shè)計(jì)(第3版):學(xué)習(xí)指導(dǎo)與練習(xí)
- Hands-On JavaScript High Performance
- Linux環(huán)境編程:從應(yīng)用到內(nèi)核
- OpenGL Data Visualization Cookbook
- HTML5秘籍(第2版)
- RocketMQ實(shí)戰(zhàn)與原理解析
- 深入實(shí)踐DDD:以DSL驅(qū)動(dòng)復(fù)雜軟件開發(fā)
- WebStorm Essentials
- Mastering PowerCLI