Introduction to JavaScript Fall 2011 Class 2

esse quam videri
Jump to: navigation, search

Back to Introduction to JavaScript Fall 2011

Lecture

Setting up your environment

Where to put script

Using the console

variable types

(why to use var)

  • string

( \ escape characters )

  • number
  • bool
  • more later

Conditional Statements

 	<form>
 		<input id="password" type="password"/>
 		<input id="checkIt" type="submit" />
 	</form>


 document.getElementById('checkIt').onclick = function(){
 	if(document.getElementById('password').value === password){
 		result = "access granted";
 	} else {
 		result = "DENIED!";
 	}
 document.getElementById('result').appendChild(document.createTextNode(result));
 //document.getElementById('result').firstChild.nodeValue = result;
 return false;
 }

Homework

In-Class 2

In-Class 2 details

In-Class 3

In-Class 3 details

Assignment 2

Assignment 1 details