encodeURI and decode URI JavaScript Coding Examples Exercises and Quiz questions Learn JavaScript

Mastering URI Handling in JavaScript: EncodeURI() and DecodeURI()  Let’s explore two essential functions in JavaScript – encodeURI() and decodeURI(). Understanding these functions is crucial when dealing with Uniform Resource Identifiers (URIs) such as URLs. 1. encodeURI() – Safeguarding Your URIs: encodeURI() is a handy function that ensures proper formatting and safety when dealing with entire … Read more

DevFest Saskatoon 2023 Speaker Laurence Svekis

November 19th 2023, I was invited to be a speaker at DEvFest Saskatoon, over 120+ attendees! https://gdg.community.dev/events/details/google-gdg-saskatoon-presents-devfest-2023-gdg-saskatoon/ Quance Theater, Quance Theater, Education Building Room 1003, University of Saskatchewan 28 Campus Drive, Saskatoon, S7N 0X1 GDG Saskatoon GDG Saskatoon’s Inaugural Tech Conference on November 19th! DevFest is an annual distributed tech conference hosted by the Google … Read more

Mastering JavaScript: Nested Functions and Closures

🚀 Mastering JavaScript: Nested Functions and Closures 🚀 Are you ready to deepen your understanding of JavaScript’s core concepts? Let’s explore the world of nested functions and closures – powerful features that enhance modularity and encapsulation in your code. Here’s a brief overview: 1. Nested Functions: By defining functions within other functions, you create a … Read more

Elevate Your JavaScript Skills with Arrow Functions!

Arrow functions are a concise way to write anonymous function expressions in JavaScript. They were introduced in ECMAScript 6 (ES6) and provide a more compact syntax compared to traditional function expressions. Arrow functions are especially useful for short, one-off functions and for situations where a concise syntax improves code readability. Here’s the basic syntax of … Read more

Pre Black Friday Udemy Course Coupon Deals 2023 Best price possible Web Dev courses and Apps Script courses Plus more

Use the promo code NOVA2023 on my courses for the next 4 days to get the BEST PRICE POSSIBLE!!! This is the biggest sale ever. 4.3 Stars – 42 hrs HD video content Modern Web Design Beginners HTML CSS JavaScript 25+ Projects https://www.udemy.com/course/modern-web-design/?couponCode=NOVA2023 Google Apps Script Learn Coding Projects Exercises Resources 13+hrs Video Content https://www.udemy.com/course/learn-apps-script/?couponCode=NOVA2023 … Read more

Elevate Your Google Apps Script Knowledge!

Google Apps Script  Are you looking to boost your productivity and streamline your work in Google Workspace? Google Apps Script is your secret weapon! 🛡️ I’ve put together 25 multiple-choice questions to test your knowledge and expand your understanding of this powerful tool. Whether you’re a seasoned pro or just getting started, these questions cover … Read more

Learn Google Apps Script Coding Examples 3 Projects in Sheets

Google Apps Script Notify User on Edit of Sheet Here’s how you can set up this project: Remember to adapt the code to your specific use case and requirements. Google Apps Script can be used for a wide range of tasks, from automating Google Sheets to creating custom add-ons for various Google Workspace apps. function … Read more

Google Apps Script Tutorial: Automated Email Notifications on Google Sheets Edits

In this Google Apps Script tutorial, we’ll explore how to automate email notifications when a specific cell in a Google Sheets document is edited. This can be a handy tool for staying informed about important changes in your spreadsheet data. The script utilizes the onEdit trigger, which is an event-driven function that runs whenever an … Read more

JavaScript Test your knowledge Quiz

JavaScript Test your knowledge Quiz Question 1: What is the primary purpose of the this keyword in JavaScript? A) To refer to the previous line of code B) To reference the current object or context C) To access the parent element in the DOM D) To declare a new variable Answer: B) To reference the … Read more

JavaScript Quiz 25 Questions

JavaScript Multiple Choice Quiz Question 1: What does JavaScript primarily add to a web page? A) Style B) Interactivity C) Structure D) Images Answer: B) Interactivity Question 2: What is the correct way to declare a variable in JavaScript? A) let myVar = 10; B) var myVar = 10; C) const myVar = 10; D) … Read more