JavaScript from Beginner to Professional: Learn JavaScript quickly by building fun, interactive, and dynamic web apps, games, and pages
https://www.amazon.com.be/dp/1800562527?ref_=cm_sw_r_cp_ud_dp_VHKK64H99QFY5GCBQRD8
Coding Help Tips Resources Tutorials
Google Apps Scripts and Web Development Tutorials and Resources by Laurence Svekis
https://www.amazon.com.be/dp/1800562527?ref_=cm_sw_r_cp_ud_dp_VHKK64H99QFY5GCBQRD8
Guide to JavaScriptJavaScript is a high-level, dynamic, and interpreted programming language. It is used to add interactivity and other dynamic elements to websites. The console in JavaScriptVariables:JavaScript CommentsData Types:JavaScript Data TypesArithmetic Operations:Conditional Statements:Functions:JavaScript Loops:JavaScript ArraysJavaScript ObjectsHow to output a table into the consoleJavaScript String MethodsJavaScript Number MethodsJavaScript MathVariables:Arrays:Example : ArrayExample: ObjectObjects:Conditional Statements:Functions:Example: Simple FunctionExample: Conditional … Read more
HTML (Hypertext Markup Language) is the standard language used to create web pages. It is a markup language, which means that it uses tags to describe the structure and content of a web page. HTML tags define the headings, paragraphs, lists, links, images, and other elements of a web page. CSS (Cascading Style Sheets) is … Read more
Basics of JavaScript Code JavaScript is a high-level, dynamic, and interpreted programming language. It is used to add interactivity and other dynamic elements to websites. The console in JavaScript The console in JavaScript is a tool used for debugging and testing purposes. It allows developers to log information to the browser console for viewing. This … Read more
Please stay tuned for several new books that I am launching over the month of October. Coming soon, Python Coding for Beginners will be published on Amazon Kindle Coming soon, Google Apps Script for Workspace Users coming to Amazon Kindle soon As always I will provide free codes when the books launch, subscribe to my … Read more
Clear Array of Duplicates and empty values const arr = [‘Laurence’,’Jack’,’Jane’,”,,,,’Sam’,’Laurence’,’Jack’,’Jane’,”,null,false,undefined,0,’Sam’]; console.log(arr); const arr1 = [… new Set(arr)]; console.log(arr1); const arr2 = arr.filter(Boolean); console.log(arr2); const arr3 = [… new Set(arr.filter(Boolean))]; console.log(arr3); How to loop through an array const arr = [‘Laurence’,’Linda’,’Joe’,’Jane’]; console.log(arr); console.log(‘****FOR’); for(let i=0;i<arr.length;i++){ console.log(arr[i]); } console.log(‘****WHILE’); let i=0; while(i<arr.length){ console.log(arr[i]); i++; } console.log(‘****ForEach’); … Read more
Learn JavaScript DOM Create Dynamic and Interactive Web Pages Kindle Free Ebook for the next 3 days please note that Kindle is location dependant go the Amazon page for your country.