please dont rip this site

JavaScript Tutorial

(for CSE 90025 FUTURES HTML5 and JavaScript)
10 sessions hours.

Sections:

  1. Course intro and HTML Review
  2. Javascript Intro and Basics
  3. JavaScript Basics
  4. Object Oriented JavaScript
  5. Basic DOM Interaction
  6. Event Handling
  7. Animation
  8. Building Interactive Webpages aka Games
  9. Projects
  10. Conclusions / Presentations

Introduction:

Behavior:

Do no harm. And other advice.

Practice  Iterative Design.

Respect others. Do not distract. Do not belittle. Special care will be taken for women and minorities as they are regularly disrespected. Racism or sexism in any form will NOT be tolerated in this class!

History.

GitHub account setup post your first code (from the first excercise) and raise an issue on the class repo introducing yourself.

DevTools Console is a sort of IDE built into every copy of Chrome

Troubleshooting and Common errors and Cuiosities in Javascript

Glossary

Excercises:

https://www.javascript.com/

Short Circuits

'cat' && 'dog' what does that return? Why? How might that be useful?

'cat' || 'dog' what does that return? Why? How might that be useful?

hints: && is logical AND which needs to know that both values are true. || is logical OR and doesn't need to know the second value if the first is true. 'cat' and 'dog' both evaluate to true.

var attrib = obj && obj.subobject && obj.subobject.attribute || 'default'
or if attribute is just one level down, use:
var attrib = obj ? obj.attribute : 'default'

var thing = getThing(parameter) || reporterror(message)
Keeps the focus on the expected action but still handles occasional errors. e.g.
var contents = fs.open('filename') || process.exit(1) (actually only useful in node)

See also:


file: /Techref/language/JAVA/SCRIPT/tutorial.htm, 4KB, , updated: 2021/10/2 19:47, local time: 2024/3/28 12:28,
TOP NEW HELP FIND: 
34.201.122.150:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.massmind.org/techref/language/JAVA/SCRIPT/tutorial.htm"> JavaScript Tutorial</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .