Author Archives: Help_adm

Google Forms Advanced Features |Google Form

Google Forms Advanced Features There are some features that Google includes to help collect the data you want. Some questions will trigger response validations. If your question includes “email” or “e-mail,” the form asks if you want to collect the email addresses of respondents and limit responses to one per person. If you start with “How… Read More »

Working with Google Form Responses | Google Form

Working with Google Form Responses The form will sometimes provide suggested response options based on the question’s text. Enter “Are you” and it’ll suggest genders. Try “size” and it’ll list S, M, L, XL. “Do you like” will offer yes, no, and maybe. Ignore the suggestions Do nothing. The form will not add a response… Read More »

How to Add Questions to a Google Form | Google Form

How to Add Questions to a Google Form Add a question Click Untitled Questions and enter the text for what you want to ask. To make the question required, click the Required slider button.  You can duplicate the question by clicking the multiple page icon. Delete the question, by clicking the trashcan icon. Add an image to the question Click… Read More »

JavaScript Reserved Words

In JavaScript you cannot use these reserved words as variables, labels, or function names: abstract arguments await* boolean break byte case catch char class* const continue debugger default delete do double else enum* eval export* extends* false final finally float for function goto if implements import* in instanceof int interface let* long native new null… Read More »

JavaScript Performance

How to speed up your JavaScript code. Reduce Activity in Loops Loops are often used in programming. Each statement in a loop, including the for statement, is executed for each iteration of the loop. Statements or assignments that can be placed outside the loop will make the loop run faster. Bad: for (let i = 0; i <… Read More »

JavaScript Common Mistakes

This chapter points out some common JavaScript mistakes. Accidentally Using the Assignment Operator JavaScript programs may generate unexpected results if a programmer accidentally uses an assignment operator (=), instead of a comparison operator (==) in an if statement. This if statement returns false (as expected) because x is not equal to 10: Example: <!DOCTYPE html> <html> <body> <h2>JavaScript Comparisons</h2>… Read More »

JavaScript Best Practices

Avoid global variables, avoid new, avoid ==, avoid eval() Avoid Global Variables Minimize the use of global variables. This includes all data types, objects, and functions. Global variables and functions can be overwritten by other scripts. Use local variables instead, and learn how to use closures. Always Declare Local Variables All variables used in a function should be declared… Read More »