0% found this document useful (0 votes)
18K views

Build A Technical Documentation Page

This technical documentation page discusses JavaScript. It describes JavaScript as a cross-platform, object-oriented scripting language that can be connected to host environment objects. The page also covers JavaScript's standard library, extending JavaScript for different purposes like client-side and server-side use, and includes code examples for declaring variables and functions. Sections provide overviews of variable scope, writing a basic "Hello World" program, and the assumptions for readers' background.

Uploaded by

kay needham
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18K views

Build A Technical Documentation Page

This technical documentation page discusses JavaScript. It describes JavaScript as a cross-platform, object-oriented scripting language that can be connected to host environment objects. The page also covers JavaScript's standard library, extending JavaScript for different purposes like client-side and server-side use, and includes code examples for declaring variables and functions. Sections provide overviews of variable scope, writing a basic "Hello World" program, and the assumptions for readers' background.

Uploaded by

kay needham
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

** start of undefined **

<!DOCTYPE html>
<html lang="en">
<head>
<title>Technical Page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main id="main-doc">
<section class="main-section" id="technical_Documentation">
<header>
<h2>technical Documentation</h2>
</header>
<p>
JavaScript is a cross-platform, object-oriented scripting language. It is a small
and lightweight language. Inside a host environment (for example, a web browser),
JavaScript can be connected to the objects of its environment to provide
programmatic control over them.</p>
<p>
JavaScript contains a standard library of objects, such as Array, Date, and Math,
and a core set of language elements such as operators, control structures, and
statements. Core JavaScript can be extended for a variety of purposes by
supplementing it with additional objects; for example:
<li>Client-side JavaScript extends the core language by supplying objects to
control a browser and its Document Object Model (DOM)</li>
<li>Server-side JavaScript extends the core language by supplying objects relevant
to running JavaScript on a server.</li></p>
</section>
<section class="main-section" id="Content_one">
<header>
<nav id="navbar">
<h2>
Content one
</h2>
</nav>
</header>
<p>
This guide assumes you have the following basic background:</p>
<li>A general understanding of the Internet and the World Wide Web (WWW).</li>
<li>
Good working knowledge of HyperText Markup Language (HTML) e.g
</li>
<p> <code>href=""</code></p>
<p>and</p>
<p><code>img src=""</code></p>
<li>
Some programming experience. If you are new to programming, try one of the
tutorials linked on the main page about JavaScript.
</li>
</section>
<section class="main-section" id="Hello_World">
<header>
<h2>
Hello World
</h2></header>
<p> To get started with writing JavaScript, open the Scratchpad and write your
first "Hello world" JavaScript code: </p>
<p><code>
function greetMe(yourName) { alert("Hello " + yourName); }
greetMe("World");
</code></p>
</section>
<section class="main-section" id="Declaring_Variables">
<header>
<h2>
Declaring Variables
</h2></header>
<p>
You can declare a variable in three ways:

With the keyword var. For example,


<code>var x = 42.</code>
</p>
<p>This syntax can be used to declare both local and global variables.

By simply assigning it a value. For example,


<code>x = 42.</code>
</p>
</section>
<section class="main-section" id="variable_scope">
<header>
<h2>variable scope</h2>
</header>
<p>When you declare a variable outside of any function, it is called a global
variable, because it is available to any other code in the current document. When
you declare a variable within a function, it is called a local variable, because it
is available only within that function. </p>
</section>
<nav id="navbar">
<header><a class="nav-link" href="#technical_Documentation">Technical
Documentation</a></header>
</nav>
<nav id="navbar">
<a class="nav-link" href="#Content_one">Content one</a>
</nav>
<nav id="navbar">
<a class="nav-link" href="#Hello_World">Hello World</a>
</nav>
<nav id="navbar">
<a class="nav-link" href="#Declaring_Variables">Declaring Variables</a>
</nav>
<nav id="navbar">
<a class="nav-link" href="#variable_scope">variable scope</a>
</nav>
</main>
</body>
</html>

** end of undefined **

** start of undefined **

@media (font-family: san serif) {

}
** end of undefined **

You might also like