-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.html
More file actions
20 lines (19 loc) · 1.63 KB
/
3.html
File metadata and controls
20 lines (19 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
<head>
<title>Web 1 - JavaScript</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="%EC%88%98%EC%97%85%20index.html">WEB</a></h1>
<ol>
<li><a href="%EC%88%98%EC%97%85%201.html">HTML</a></li>
<li><a href="%EC%88%98%EC%97%85%202.html">CSS</a></li>
<li><a href="%EC%88%98%EC%97%85%203.html">JavaScript</a></li>
</ol>
<h2>JavaScript란 무엇인가?</h2>
<p>JavaScript, often abbreviated as JS, is a high-level, dynamic, weakly typed, prototype-based, multi-paradigm, and interpreted programming language. Alongside HTML and CSS, JavaScript is one of the three core technologies of World Wide Web content production. It is used to make webpages interactive and provide online programs, including video games. The majority of websites employ it, and all modern web browsers support it without the need for plug-ins by means of a built-in JavaScript engine. Each of the many JavaScript engines represent a different implementation of JavaScript, all based on the ECMAScript specification, with some engines not supporting the spec fully, and with many engines supporting additional features beyond ECMA.
As a multi-paradigm language, JavaScript supports event-driven, functional, and imperative (including object-oriented and prototype-based) programming styles. It has an API for working with text, arrays, dates, regular expressions, and basic manipulation of the DOM, but the language itself does not include any I/O, such as networking, storage, or graphics facilities, relying for these upon the host environment in which it is embedded.
</p>
</body>
</html>