Summary
Explore advanced JavaScript concepts like JSON syntax for object serialization, versatile function patterns including closures, object inheritance via prototypes, and browser interaction using the Browser Object Model. Understand error handling with try-catch to write robust code.
We'll cover the following...
We'll cover the following...
JavaScript has a number of great features that allow you to implement advanced scenarios. In this chapter you learned the most powerful of them.
You can use the JSON syntax within your code to create objects, serialize them to strings, and parse JSON strings back to objects.
JavaScript functions are the cornerstones of useful programming patterns. Functions ...