# JavaScript Development Primer
# Objective
In this section, you will take a brief look at JavaScript development and the resources you might explore to expand your JavaScript skills.
# Overview
JavaScript is a powerful, lightweight and dynamic object-oriented programming language. It is one of the most widely deployed in the world, being shipped with every major web browser, giving it a good pedigree for cross-platform client development. It is leveraged by some of the largest and diverse communities of programmers, meaning there is never likely to be a shortage of skills. These are just some of the reasons that support why JavaScript was chosen as the language of choice for Titanium.
While Javascript popularity stems from its strong web browser presence, it has become much more than a tool for web interactivity. Many people are building servers, games, productivity tools and every other type of app conceivable with Javascript. Here's a short list of what Javascript has been doing lately.
Every major web browser supports JavaScript; most supporting one of the standardized ECMAScript versions
Node.js is an event-driven server-side JavaScript implementation, supporting asynchronous I/O for high performance web applications
OpenOffice supports JavaScript (among other languages) for scripting the suite's applications
Various supersets of JavaScript or higher-level languages seek to standardize programming patterns, add advanced features, and so forth. Systems like CoffeeScript, Objective-J, Quby, and more "compile" to JavaScript for broadest possible support in the web browser
Titanium is, of course, a JavaScript framework for mobile app development (see ECMA-262-5 Compliance for more info on language support and standards compliance).
Here are a few of the features of the language that make it a favorite among its developers:
Dynamic typing (which allows Duck typing (opens new window))
Convenient object literal notation
A small set of standard functions and syntactical elements - learn the whole language in a day!
# JavaScript Resources
JavaScript can be a truly powerful tool when you've learned to how to master it. Teaching JavaScript is outside of the scope of our documentation. So, here are a few resources to help you get started.
# Online and virtual courses
The following is an alphabetical list of online JavaScript course offerings that you might find helpful.
Codecademy (opens new window) is a interactive scripting tutorial site with both free and paid courses
JavaScript Master Class (opens new window) is an online course offered by Amy Hoy & Thomas Fuchs. You'll need to register and pay for this course but seems to get good reviews.
Stanford's CS101 course uses JavaScript, lecture notes and projects are available at http://www.stanford.edu/class/cs101/ (opens new window)
Udemy (opens new window) offers paid and free video-based courses on JavaScript and other topics
Take free online courses in JavaScript and programming for the web from top universities and institutions including Microsoft and W3C from edX (opens new window)
# Online Books and Resources
The following are some recommended JavaScript resources, freely-available on the web, that you will likely want to refer to while you build your Titanium application.
Eloquent JavaScript (opens new window) is an excellent learning resource that is available as an interactive website, downloadable HTML file, or printed book
Mozilla maintains an excellent JavaScript documentation site (opens new window), which very conveniently leaves out the DOM-specific programming tasks (which you'll rarely use in a native Titanium application). The MDC JavaScript site provides two key elements - an API doc source for JavaScript object types (opens new window) and an introduction to programming JavaScript in general (opens new window). The JavaScript Guide will contain some browser-specific items that aren't included in the Titanium JavaScript environment, but the core techniques will be the same.
Considered by many to be the premier JavaScript expert in the world, Douglas Crockford maintains a listing of JavaScript resources on his personal website (opens new window), all of which are definitely worth checking out. Many technologies pioneered by Crockford are embedded in Titanium in one way or another, including his JSLint code validator (opens new window) and public domain JSON serialization library (opens new window).
JavaScript in 10 minutes (opens new window) is a terse and dense guide to advanced JavaScript. It's not for the beginner, but it's packed full of tips, tricks, and inside-knowledge for the more advanced JavaScripter.
Google, a major purveyor of JavaScript awesomeness, has published a set of JavaScript code style guidelines (opens new window). Following these guidelines is certain to make your Javascript code more effective and maintainable.
Learning Advanced JavaScript (opens new window) from John Resig, the creator of jQuery. As you can see from its stated goal (opens new window), this is advanced stuff to be studied once you master the basics.
# Print Books
Here are a few good books to get you started. These should be considered required reading for those serious about understanding Javascript and leveraging it to its full capacity.
JavaScript: The Good Parts (opens new window), by Douglas Crockford
JavaScript: The Definitive Guide (opens new window), by David Flanagan
JavaScript Patterns (opens new window), by Stoyan Stefanov
Eloquent JavaScript (opens new window), by Marijn Haverbeke
# A few best practices
There's a large number of good references on JavaScript best practices available but, especially for developers coming to Titanium with a limited background in it, we'd like to share the most important to ensure high-quality applications.
# Don't pollute the global scope!
In a JavaScript execution context, all variables are global by default. The only means of scoping variables is to place them inside of a function. (Within a function, if you don't include the var
keyword, your variables will be treated as global variables.) A much better approach than global variables/functions is to enclose all your application's API functions and properties into a single variable (namespace). This will minimize the chances of your code colliding with other code or libraries you include in the context later.
app.js
// BAD - we put five variables in the global scope which could be clobbered
var key = 'value',
foo = 'bar',
charlie = 'horse';
function helper() {
//help out
}
function info(msg) {
helper(msg);
Ti.API.info(msg);
}
// Better - define a single namespace to hold all your variables
var myapp = {}; // namespace and only global variable
myapp.key = 'value';
/* Or, define the namespace and a few variables all at once with
var myapp = {
key: 'value',
foo: 'bar',
charlie: 'horse'
};
*/
// add a function to your namespace
myapp.dosomething = function(foo) {
// do something
};
// extend and encapsulate by using self-calling functions
(function() {
function helper() {
// this is a private function not directly accessible from the global scope
}
myapp.info = function(msg) {
// added to the app's namespace, so a public function
helper(msg);
Ti.API.info(msg)
};
})();
// you could then call your function with
myapp.info('Hello World');
# Use === and !== instead of == and !=
JavaScript will automatically convert values in a conditional test unless you tell it not to.
var testme = '1';
if (testme == 1) {
// this will be executed because '1' is converted to an integer!
}
Called by some the "Compare, damn it!" operator, ===
performs what a ==
operator might in other languages. If the two operands are equal in both type and value, ===
will return true and !==
will return false, which is almost always what you mean. This is a common gotcha and fits nicely in the category of JavaScript language quirks.
var testme = '1';
if (testme === 1) {
// this will not be executed
}
# Ternary operator
JavaScript ternary operator is a handy way of turning a conditional block into a single statement. This lets you conditionally assign a value to a variable or object property. The value after the ?
is assigned if the conditional statement is true
. The value after the :
is assigned if the conditional statement is false
.
// You could do this
if (somecondition === somevalue) {
var xyz = 'abc';
} else {
var xyz = '123';
}
// but this is more compact
var xyz = (somecondition === somevalue) ? 'abc' : '123';
# Lots of variables? Use a comma
You don't need to put var
in front of every variable - you can use commas to replace:
var foo = true;
var me = 'awesome';
with
var foo = true, me = 'awesome';
# Efficient loops
In most situations, checking the length of an array during every iteration can be slow. Moreso when working with Titanium proxy objects (that represent some native structure). So rather than writing:
var names = ['Jeff','Nolan','Marshall','Don'];
for (var i=0; i < names.length; i++) {
process(names[i]);
}
It is better to only get the length of the array only once, as in:
var names = ['Jeff','Nolan','Marshall','Don'];
for (var i=0,j=names.length; i<j; i++) {
process(names[i]);
}
# Wrap self-calling functions in parenthesis
Self-calling functions (opens new window) are a useful pattern for encapsulating private variables and functions in JavaScript. As you start to realize the utility of self-calling functions, you may be tempted to write a self-calling function as:
var myValue = function() {
//do stuff
return someValue;
}();
While syntactically correct, someone reading this code (missing the () at the end of the function declaration) might think you are assigning a function to myValue
, rather than the return value of the function. A better way to write this is with wrapping parentheses:
var myValue = (function() {
//do stuff
return someValue;
})();
In this case, it is more clear that myValue
is not a function, but the return value of the function.
# Summary
You briefly looked at JavaScript development and the resources you might explore to expand your JavaScript skills. This was a lightning fast assessment of coding style and practices that will aid in becoming a better Javascript developer. It is far from a comprehensive list, though, and is not meant to be training material per se. It is highly recommended that you go out and get at least one, if not all of the books mentioned in order to gain a true understanding of the scope and power of the language.