Learn Google Apps Script Introduction to Google Apps Script

Introduction to Google Apps Script Macros within Google Sheets can be used to write Apps Script Code. Create a new spreadsheet and add some data into the sheet. In the top menu under extensions select Macro. Google Apps Script is created using standard JavaScript Syntax. Apply some changes and update the text color of some … Read more

Code Examples JavaScript ebook FREE ebook JavaScript Code

Code Examples JavaScript ebook How to remove and update array items const arr1 = [‘FIRST’,’Laurence’,’Svekis’,100,false]; const arr2 = [‘SECOND’,2332,true,’Hello’,’Svekis’,400,false]; const arr3 = arr1.concat(arr1,arr2); const arr4 = arr1; arr2.push(arr1); console.log(arr2); console.log(arr3); Array.prototype.push.apply(arr1,arr2); console.log(arr1); arr2.push(‘NEW ITEM’); arr1.push(‘Arr 1 New’); //delete arr1[12]; //delete arr2[7]; //arr1.length = 0; arr1.splice(12,1,’REMOVED’,’SECOND’); arr2.splice(3); console.log(arr1); console.log(arr2); console.log(arr3); console.log(arr4); Comparing Data Type and automatic … Read more

Data Automatic Type Conversion with JavaScript How it works with Code Examples to learn more about

Data Automatic Type Conversion with JavaScript How it works with Code Examples to learn more about

Immediately Invoked Function Expression JavaScript Code examples how to use IIFE

Immediately Invoked Function Expression JavaScript Code examples how to use IIFE

JavaScript Array Remove Items from an array with JavaScript Code source Code included

JavaScript Array Remove Items from an array with JavaScript Code source Code included

Math Random and Arrays Random functions with JavaScript Code How to get Random Item from Array

Math Random and Arrays Random functions with JavaScript Code How to get Random Item from Array

Object Constructor Example code with JavaScript How to create Objects with Code

Object Constructor Example code with JavaScript How to create Objects with Code

String WhiteSpace Remover mini applications source code in JavaScript function example

String WhiteSpace Remover mini applications source code in JavaScript function example

Learn about JavaScript Loops For While with coding examples and how to use Loops in JavaScript code

Learn about JavaScript Loops For While with coding examples and how to use Loops in JavaScript code