JavaScript 1 - Introduction

Usage

<html lang=”en”>
	<head>
		<script type="text/javascript">
            alert("Welcome to my world!")
    </script>
	</head>
	<body>
		<!-- page content -->
	</body>
</html>

Basic JavaScript Syntax

Comments

//Single-line comment
/*multi-
line
comment.*/

Lines

document.write("Hello World");
//Lines end in ";"

Case Sensitivity

DOCUMENT.WRITE("Hello World"); //Does not work
document.write("Hello World"); //Works

Keywords

Some words are reserved, such as the ones below.