An open API service indexing awesome lists of open source software.

https://github.com/moonhighway/javascript-kickoff

This course introduces developers to the JavaScript Language.
https://github.com/moonhighway/javascript-kickoff

Last synced: about 1 year ago
JSON representation

This course introduces developers to the JavaScript Language.

Awesome Lists containing this project

README

          

JavaScript Kickoff
=============================
This course introduces developers to the popular JavaScript Language. In this course, developers will isolate the
JavaScript core types in the browser to see how the JavaScript language differs from Java or other Object Oriented
languages.

Topics
------
* JavaScript History
* Primitives and Flow Control
* Arrays
* Objects
* Regular Expressions
* The DOM
* Functions
* Event Handlers
* Timing and Callbacks
* Debugging

### Primitives and Flow Control

* [addition and concatenation](http://jsbin.com/etujus/2/edit?js,output)

### Arrays

* [Sample 1, 2](http://jsbin.com/apazef/1/edit?js,output)

### Objects

* [dot notation](http://jsbin.com/apazef/3/edit?js,output)
* [literal notation](http://jsbin.com/apazef/4/edit?js,output)

### Regular Expressions

* [Sample](http://jsbin.com/miqu/1/edit?js,output)

### The DOM

* [innerHTML, innerText, writing HTML](http://jsbin.com/etujus/3/edit?js,output)
* [Adding and Removing Attributes 1,2](http://jsbin.com/qenixa/1/edit?css,js,output)
* [form elements](http://jsbin.com/qenixa/4/edit?html,js)

### Functions

* [Sort Array of Objects](http://jsbin.com/tobewe/1/edit?js,console)