Function Chaining

 Function Chaining

Two functions can be combined to from a more complex function

first f1 then f2

i.e. f1.andThen(f2).apply(i);

first f2 then f1

f1.compose(f2).apply(i);


Google Script for Data Entry Form in Google Spreadsheet

// function to validate the entry made by user in user form function validateEntry (){ // declare a variable and referernece of active goog...