Free JavaScript Code Unleashed Level up your skills New Books

This is the perfect book to upgrade your JavaScript Skills Launch for Free starting Feb 27-29th US https://www.amazon.com/dp/B0CW1FWSVZ Canada https://www.amazon.ca/dp/B0CW1FWSVZ JavaScript Code Unleashed Level up your skills: Dive Deep with Code Examples, Questions and Explanations of Advanced JavaScript Concepts (Power Up your Coding Skills)  “JavaScript Unleashed” offers a unique teaching approach that cuts straight to … Read more

Introduction to JavaScript Fundamentals

Introduction to JavaScript Fundamentals Core Principles and Fundamentals of JavaScript In this section, we delve into the core principles and peculiarities that define JavaScript as a dynamic and versatile programming language. From understanding the intricacies of data type coercion to mastering the modern syntax introduced in ES6, our journey will equip you with the knowledge … Read more

Apps script to add a blank line directly above any paragraph that is bold

You can achieve this by iterating through all paragraphs, checking if they contain bold text, and if so, inserting a blank paragraph directly above them. Here’s the script: This script iterates through all paragraphs in the document. If a paragraph contains bold text, it inserts a blank paragraph directly above it. To use this script: … Read more

Apps script to add blank paragraph above all paragraphs that end with a question mark

You can achieve this by iterating through all paragraphs, checking if they end with a question mark, and if so, inserting a blank paragraph above them. Here’s the script: This script iterates through all paragraphs in the document. If a paragraph ends with a question mark, it inserts a blank paragraph above it. To use … Read more

Apps script to select all h3 paragraphs convert them to regular paragraphs with bolded text

Below is a Google Apps Script that selects all H3 paragraphs in a Google Document, converts them to regular paragraphs, and makes the text within them bold: Here’s how it works: To use this script: This will convert all H3 paragraphs to regular paragraphs with bolded text.

Clear left indent back to default for all page elements apps script for docs

To clear the left indentation back to default for all page elements (including paragraphs, lists, etc.) in a Google Doc using Apps Script, you can adjust the indentation attributes accordingly. Here’s a script to accomplish this: This script iterates through all paragraphs and lists in the document, setting their left indentation attributes to 0, effectively … Read more

Remove indentation in paragraphs in a Google Doc using Apps Script

To remove indentation in paragraphs in a Google Doc using Apps Script, you can modify the paragraph attributes. Here’s a script to remove indentation from all paragraphs in the document: This script iterates through all paragraphs in the document and sets both the first line and start indentation to 0, effectively removing any indentation from … Read more

Apps script to removelist items in a doc turn them into regular paragaphs

This script iterates through the child elements of the document’s body. If it encounters a list item, it converts it into a regular paragraph by extracting its text and inserting a new paragraph with the same text and formatting attributes. It then removes the original list item.

Update normal text style in Google Docs with Apps Script

To create a Google Apps Script that updates all paragraphs styled as “Normal text” in a Google Doc to have a font size of 11 and not be bold, follow these instructions. This script will go through your Google Doc and apply these formatting changes to all paragraphs that are designated as “Normal text.” This … Read more