Learn JavaScript coding lesson How to use Regular Expression RegExp to find Email Pattern in string

Regular expressions provide a powerful way to create patterns that can be matched from string content in JavaScript code. To find all matches of a typical email there are several ways to create the pattern. Start by setting up a grouping of the patterns, using the () adding the global flag to match all the … Read more

Create a Responsive Website from scratch Quickly and easily use Media Query CSS lesson Free styling

CSS setting Media Query with Final CSS style UpdatesResize and stack columns as rows on screen sizes less than 640px. Add the media query and make adjustments to the look and feel of the website on smaller screens. Test out the styling and preview how it adjusts to different size screens. Use the placeholder content … Read more

JavaScript How to Create a Bouncing Ball Animation with Vanilla JavaScript and moving Page elements

JavaScript How to Create a Bouncing Ball Animation with Vanilla JavaScript and moving Page elements Course content web development and web design courses with coding examples and source code for the lesson content. Source Code is available within my Github account. Lessons posted are designed to help students learn more about a specific topic related … Read more

Modern Responsive Website from Scratch in less than 1 hour Free PDF Guide Website

Get the complete course here https://www.udemy.com/course/html-css-learn-to-create-a-website-from-scratch/ How to create a website from Scratch HTML and CSS Includes a 48 Page Downloadable PDF guide with source code and lesson resources. Course lessons include Tools web developer Setup and coding create HTML index page Basics setup of HTML structure and planning of content HTML structure adding page … Read more

Free JavaScript Coding Examples PDF Guide

JavaScript Coding Examples Block Scope Declare Variables For of vs in iterable Items JavaScript Countdown using Interval JavaScript Object Literals JavaScript Instance Objects JavaScript Spread Operator syntax JavaScript Coding Examples JavaScript Coding Examples 1Block Scope Declare Variables 1For of vs in iterable Items 2JavaScript Countdown using Interval 4JavaScript Object Literals 5JavaScript Instance Objects 5JavaScript Spread … Read more

JavaScript Quick Coding Array Methods Tips and Examples

Free Course of the Day! JavaScript includes bonus PDF guide – LifeTime access #javascript https://www.udemy.com/course/javascript-coding Explore how you can use JavaScript to get array items with commonly used array methods Introduction to array methods coding examples in JavaScript01:25Lesson source code and resource guide01:29Clear Array of Duplicates and empty values04:11How to loop through an array07:41Array Updating … Read more

Apps Script Lesson Select Emails using Regex on Doc Body text apply style for highlighting selection

Highlight emails in a Doc using Regex on Doc Body Contents Select all matching results from a Regex for email patterns.  Creates an array of the emails contained in the doc, then applies styling to the email.  Highlight the matching results with a yellow background and black text. function onOpen(){  DocumentApp.getUi()  .createMenu(’emails’)  .addItem(‘Highlight’,’highlighter’)  .addToUi() } … Read more

How to Copy All Images from Doc into your Google Drive apps script blob file creator

Copy All Images from Doc into your Google Drive Example will extract all the images from a Google Doc and make copies of them directly into your Google Drive. function onOpen(){  DocumentApp.getUi()  .createMenu(‘images’)  .addItem(‘creator’,’getImgs’)  .addToUi() } function getImgs(){  const doc = DocumentApp.getActiveDocument();  const body = doc.getBody();  const images = body.getImages();  const id = ‘1mW6Yh2X4wU8A-vQs1Z2RRVHIfHD_SI3u’;  const … Read more

Add Date into Google Doc at cursor Google Apps Script Lesson with Source Code

Add Date into Google Doc at cursor Document Apps Script Example function onOpen() {  const ui = DocumentApp.getUi();  ui.createMenu(‘Adv’)  .addItem(‘Add Date’,’adder’)  .addToUi() } function adder(){  const doc = DocumentApp.getActiveDocument();  const cur = doc.getCursor();  if(cur){    const val = new Date();    const temp = Utilities.formatDate(val,”GMT”, “yyyy-MM-dd”)    const ele = cur.insertText(temp);  } }