Conventions used

There are a number of text conventions used throughout this book.

CodeInText: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "To override New, Edit, or View, the Lightning component must implement the Lightning:actionOverride interface."

A block of code is set as follows:

function StringUtils() {};StringUtils.prototype.concatenate = function(str1,str2) {  return str1.concat(str2);};StringUtils.prototype.camelcase = function(string) {  string = string.toLowerCase().replace(/(?:(^.)|([-_\s]+.))/g, function(match) {      return match.charAt(match.length-1).toUpperCase();  }); return string.charAt(0).toLowerCase() ...

Get Learning Salesforce Lightning Application Development now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.