Links allow users to click their way from page to page.
first of all ,we Use the element to define a link then we Use the href attribute to define the link address after that we Use the target attribute to define where to open the linked document and we Use the element (inside ) to use an image as a link.
We use layout to display content in multiple columns.
* JavaScript methods are actions that can be performed on objects.*
Functions let you group a series of statements together to perform a specific task. If different parts of a script repeat the same task, you can reuse the function (rather than repeating the same set of statements).
Objects in JavaScript can be compared to objects in real life. The concept of objects in JavaScript can be understood with real life, tangible objects.
for Example –> In real life, a car is an object.
A car has properties like weight and color, and methods like start and stop , All cars have the same properties, but the property values differ from car to car. All cars have the same methods, but the methods are performed at different times.
Date, Math, String, Array, and Object.
The built-in objects are Date, Math, String, Array, and Object. Each is used in a unique and not-quite-consistent way. Furthermore, newer versions of JavaScript (as found in Netscape “Atlas,” currently in beta) implement several of these objects in a different manner than in Netscape 2.0. In this column we will address these built-in objects and how to use them. And we’ll make note of the quirks you’ll encounter as you apply these objects to your JavaScript pages.
Pair programming consists of two programmers sharing a single workstation (one screen, keyboard and mouse among the pair). The programmer at the keyboard is usually called the “driver”, the other, also actively involved in the programming task but focusing more on overall direction is the “navigator”; it is expected that the programmers swap roles every few minutes or so.