JavaScript from Beginner to Professional: Learn JavaScript quickly by building fun, interactive, and dynamic web apps, games, and pages

Learn JavaScript

JavaScript DOM Introduction Interactive Dynamic WebPages DOM Updated 5+ Hours 6- Page PDF Guide

New Content Just added https://www.udemy.com/course/javascript-dom-course/?couponCode=JAN2022 Learn how to make webpages Dynamic and Interactive using JavaScript to influence and manipulate page elements New lessons and section just added.

Random Number Interactive Guessing Game with JavaScript and the DOM coding exercise

Math Random Values Javascript Math object contains various methods that can be used for math functionality, in addition it also contains the random method that creates random values in JavaScript.  The Math.random() method returns a floating-point number in the range 0 (inclusive of 0) to less than 1 (not including 1). The random value can … Read more

Free Book on Amazon Learn Google Apps Script

Are you looking for more Google Apps Script resources to continue learning? Just released – New book on Amazon about Google Apps Script and its FREE on Amazon for the next 3 days only. Getting Started with Google Apps Script: How to create amazing time saving applications within your Google Workspace with Apps Script 25+ New YouTube Videos about Google Apps Script and how to … 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