Reserved Words
Javascript Tutorial – Reserved Words Below is a long list of reserved words. Each reserved word will become a clickable link as that reserved word’s help section is produced. JavaScript Reserved Words:...
View ArticleRegular Expressions
Regular Expressions Reference Sheet Character Definition Example ^ The pattern has to appear at the beginning of a string. ^cat matches any string that begins with cat $ The pattern has to appear at...
View ArticleKey Codes
Javascript Key Codes This document is written by Helge Willum Larsen It contains a list of all “onkeypress”, “onkeydown” and “onkeyup” KeyCodes in JavaScript, that can be typed with a DANISH KEYBOARD...
View ArticleIF
Javascript Reserved Word – IF IF statements can be thought of as the fundamental control statements. It allows the code to be executed IF and only IF the logic in the expression yields a boolean true...
View ArticleFOR
Javascript Reserved Word – FOR FOR loops in JavaScript allow for a set of statements to be repeated until a condition is evaluated to become a boolean TRUE. It also allows for a repetitive rule set to...
View ArticleELSE
Javascript Reserved Word – ELSE ELSE is part of the IF. ELSE can be used to have some javascript code run as a condition other than the main stream logic (expression) in the IF statement. The basic...
View ArticleIntro 1
Javascript Tutorial Intro – Page 1 JavaScript is a programming language that resembles C more than any other language. If you can program in C, you can easily learn and adapt to the methodology of...
View ArticleIntro 2
Javascript Tutorial Intro – Page 2 There are two basic places that JavaScript can run. 1) On the server (like js-examples’s server), 2) On your computer. The first is called Server-Side JavaScript, and...
View ArticleIntro 3
Javascript Tutorial Intro – Page 3 What is a JavaScript? JavaScript is a portion of code that runs before the HTML is loaded, before the document is viewed, during the document viewing, and as it is...
View ArticleIntro 4
Javascript Tutorial Intro – Page 4 Okay Okay… so how do I learn JavaScript? Several methods lay before you. I just plop down and find an example and take it apart and back together – change a thing or...
View Article