What happens when you click a link
The TCP connection has been established.
JavaScript: difference between == and ===
==
===
JavaScript: 0.1 + 0.2 === 0.3
What is JavaScript
lightweight, interpreted programming language with object-oriented capabilities that allows you to build interactivity into otherwise static HTML pages
JavaScript: create an object
var object =
{
name: "obj",
age: 10
};JavaScript: function types
named
anonymous
JavaScript: forEach
built-in method which calls a function for each element in an array
JavaScript: read and write properties of an object
use dot (.) notation
JavaScript: case sensitive
JavaScript is case sensitive
JavaScript: features