Free ebook Learn Google Apps Script code with 10 Projects
Get the free ebook for learning Google Apps Script with coding examples.
Coding Help Tips Resources Tutorials
Google Apps Scripts and Web Development Tutorials and Resources by Laurence Svekis
Get the free ebook for learning Google Apps Script with coding examples.
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
Immediately Invoked Function Expression JavaScript Code examples how to use IIFE
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
Object Constructor Example code with JavaScript How to create Objects with Code
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
Coding Logic Conditions with JavaScript code snippets and source code included to learn JavaScript