Course is NOW Free JavaScript Game for beginners Breakout HTML5 Game

Make a JavaScript Game – Create your first HTML5 Canvas JavaScript web based game from scratch explore how make a game Make your own games online – start with this amazing simple game project creating a Breakout game from scratch Explore how you can write code to create GAMEs – Games that run within any … Read more

Apps Script Fun Coding Exercises 5

Learn more about Google Apps Script – Free coding lesson – Source Code included Imports data from CSV fileSend a Slack MessageCreate a New FormCreate a PDF from DocSend customized Emails Apps Script Fun Coding Exercises 5 Imports data from CSV file Create a script that automatically imports data from a CSV file and populates … Read more

Apps Script Fun Coding Exercises 4

Learn more about Google Apps Script – Free coding lesson – Source Code included Apps Script Fun Coding Exercises 4 Adding a UI menu optionHow to create a new sheetSending Custom emails from dataAdd image button to DocCreating calendar events and trigger Adding a UI menu option Create a script that adds a custom menu … Read more

Apps Script Fun Coding Exercises 2

Learn more about Google Apps Script – Free coding lesson – Source Code included Apps Script Fun Coding Exercises 2 Sending Email RemindersSend Google Form ConfirmationsGenerate Unique ID valuesDeleting Specific RowsSort Sheet Data Sending Email Reminders Create a script that sends an email reminder to yourself every day at a specific time. function sendEmailReminder() { … Read more

Apps Script Fun Coding Exercises 1

Apps Script Fun Coding Exercises 1 Learn more about Google Apps Script – Free coding lesson – Source Code included Count Cells FunctionGet Sheet Names FunctionCount Rows in SheetGet values from ColumnsGet Column Values by Letter #GoogleAppsScript #GAS #AppsScript #GoogleScript #GoogleSheets #GoogleDocs #GoogleForms #GoogleSlides #GoogleWorkspace #GSuite #GSuiteEdu #GoogleEdu #onlinecourses #elearning #distancelearning #onlinetraining #learningonline #onlineeducation #MOOCs … Read more

5 JavaScript coding Exercises 2

5 JavaScript coding Exercises 2 FizzBuzzPalindrome checkerHangman gameShopping cartTyping speed test FizzBuzz Source code: for (let i = 1; i <= 100; i++) {   if (i % 3 === 0 && i % 5 === 0) {     console.log(‘FizzBuzz’);   } else if (i % 3 === 0) {     console.log(‘Fizz’);   } else if (i % 5 === … Read more

5 fun JavaScript coding exercises

5 JavaScript coding Exercises 1 Reverse a String:FizzBuzz:Palindrome Checker:Random Number Generator:Capitalize the First Letter of Each Word: Reverse a String: Write a function that takes a string as an argument and returns the string in reverse order. For example, if the input string is “hello”, the output should be “olleh”. function reverseString(str) {   return str.split(“”).reverse().join(“”); … Read more

10 JavaScript Coding Mistakes with solutions

10 JavaScript Coding Mistakes with solutions Not declaring variables properly:Using the wrong comparison operator:Not using semicolons:Not understanding scoping:Using “var” instead of “let” or “const”:Instead, use “let” or “const”:Using “==” instead of “===”:Not using curly braces in if statements:Using “parseFloat” instead of “parseInt”:Not handling asynchronous code properly:Example using a promise:Example using async/await:Not properly scoping variables:Example using … Read more

JavaScript Code Exercises 4

JavaScript Code Exercises 4 Exercise 1: Sum All Numbers in a RangeExercise 2: Diff Two ArraysExercise 3: Seek and DestroyExercise 4: Wherefore art thou Exercise 1: Sum All Numbers in a Range Write a function that takes an array of two numbers as input and returns the sum of all the numbers between them, inclusive. … Read more