Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

JavaScript

Page semi-protected
Listen to this article
From Wikipedia, the free encyclopedia
(Redirected fromServer-side JavaScript)
High-level programming language
Not to be confused withJava (programming language),Javanese script, orECMAScript.

JavaScript
Screenshot of JavaScript source code
ParadigmsMulti-paradigm:event-driven,functional,imperative,procedural,object-oriented
FamilyECMAScript
Designed byBrendan Eich ofNetscape first; then others contributed toECMAScript standard
First appeared4 December 1995; 29 years ago (1995-12-04)[1]
Stable release
ECMAScript 2024[2] Edit this on Wikidata / June 2024; 13 months ago (June 2024)
Preview release
ECMAScript 2025[3] Edit this on Wikidata / 27 March 2024; 15 months ago (27 March 2024)
Typing disciplineDynamic,weak,duck
Memory managementGarbage collected
Scopelexical
Filename extensions.js.mjs.cjs[4]
Websiteecma-international.org/publications-and-standards/standards/ecma-262/
Majorimplementations
V8,JavaScriptCore,SpiderMonkey;
Chakra (deprecated)
Influenced by
Java,[5][6]Scheme,[6]Self,[7]AWK,[8]HyperTalk[9]
Influenced
ActionScript,ArkTS,AssemblyScript,CoffeeScript,Dart,Haxe,JS++,Opa,TypeScript

JavaScript (/ˈɑːvəskrɪpt/), often abbreviated asJS, is aprogramming language and core technology of theWorld Wide Web, alongsideHTML andCSS. Ninety-nine percent ofwebsites use JavaScript on theclient side forwebpage behavior.[10]

Web browsers have a dedicatedJavaScript engine that executes the clientcode. These engines are also utilized in someservers and a variety ofapps. The most popularruntime system for non-browser usage isNode.js.

JavaScript is ahigh-level, oftenjust-in-time–compiled language that conforms to theECMAScript standard.[11] It hasdynamic typing,prototype-basedobject-orientation, andfirst-class functions. It ismulti-paradigm, supportingevent-driven,functional, andimperativeprogramming styles. It hasapplication programming interfaces (APIs) for working with text, dates,regular expressions, standarddata structures, and theDocument Object Model (DOM).

The ECMAScript standard does not include anyinput/output (I/O), such asnetworking,storage, orgraphics facilities. In practice, the web browser or other runtime system provides JavaScript APIs for I/O.

AlthoughJava and JavaScript are similar in name andsyntax, the two languages are distinct and differ greatly in design.

History

Creation at Netscape

The first popularweb browser with agraphical user interface,Mosaic, was released in 1993. The lead developers of Mosaic then founded theNetscape corporation, which released a more polished browser,Netscape Navigator, in 1994. This quickly became the most-used.[12]

During these formative years of the Web,web pages could only be static, lacking the capability for dynamic behavior after the page was loaded in the browser. There was a desire in the flourishing web development scene to remove this limitation, so in 1995, Netscape decided to add aprogramming language to Navigator. They pursued two routes to achieve this: collaborating withSun Microsystems to embed theJava language, while also hiringBrendan Eich to embed theScheme language.[6]

The goal was a "language for the masses",[13] "to help nonprogrammers create dynamic, interactiveWeb sites".[14] Netscape management soon decided that the best option was for Eich to devise a new language, with syntax similar to Java and less like Scheme or other extantscripting languages.[5][6] Although the new language and itsinterpreter implementation were called LiveScript when first shipped as part of a Navigatorbeta in September 1995, the name was changed to JavaScript for the official release in December.[6][1][15][16]

The choice of theJavaScript name has caused confusion, implying that it is directly related to Java. At the time, thedot-com boom had begun and Java was a popular new language, so Eich considered the JavaScript name a marketing ploy by Netscape.[13]

Adoption by Microsoft

Microsoft debutedInternet Explorer in 1995, leading to abrowser war with Netscape. On the JavaScript front, Microsoft created its owninterpreter calledJScript.[17]

Microsoft first released JScript in 1996, alongside initial support forCSS and extensions toHTML. Each of theseimplementations was noticeably different from their counterparts inNetscape Navigator.[18][19] These differences made it difficult for developers to make their websites work well in both browsers, leading to widespread use of "best viewed in Netscape" and "best viewed in Internet Explorer" logos for several years.[18][20]

The rise of JScript

Brendan Eich later said of this period: "It's still kind of asidekick language. It's considered slow or annoying. People dopop-ups or those scrolling messages in the oldstatus bar at the bottom of your oldbrowser."[13]

In November 1996,Netscape submitted JavaScript toEcma International, as the starting point for a standard specification that all browser vendors could conform to. This led to the official release of the firstECMAScript language specification in June 1997.

The standards process continued for a few years, with the release of ECMAScript 2 in June 1998 and ECMAScript 3 in December 1999. Work on ECMAScript 4 began in 2000.[17]

However, the effort to fully standardize the language was undermined by Microsoft gaining an increasingly dominant position in the browser market. By the early 2000s,Internet Explorer's market share reached 95%.[21] This meant thatJScript became the de facto standard forclient-side scripting on the Web.

Microsoft initially participated in the standards process and implemented some proposals in its JScript language, but eventually it stopped collaborating on ECMA work. Thus ECMAScript 4 was mothballed.

Growth and standardization

Logo of Technical Committee 39 ("TC39"), the committee of Ecma International that is responsible for maintaining the standard
Logo of Technical Committee 39 ("TC39"), the committee ofEcma International that is responsible for maintaining the standard

During the period ofInternet Explorer dominance in the early 2000s, client-side scripting was stagnant. This started to change in 2004, when the successor of Netscape,Mozilla, released theFirefox browser. Firefox was well received by many, taking significant market share from Internet Explorer.[22]

In 2005, Mozilla joined ECMA International, and work started on theECMAScript for XML (E4X) standard. This led to Mozilla working jointly withMacromedia (later acquired byAdobe Systems), who were implementing E4X in their ActionScript 3 language, which was based on an ECMAScript 4 draft. The goal became standardizing ActionScript 3 as the new ECMAScript 4. To this end, Adobe Systems released theTamarin implementation as anopen source project. However, Tamarin and ActionScript 3 were too different from established client-side scripting, and without cooperation from Microsoft, ECMAScript 4 never reached fruition.

Meanwhile, very important developments were occurring in open-source communities not affiliated with ECMA work. In 2005,Jesse James Garrett released a white paper in which he coined the termAjax and described a set of technologies, of which JavaScript was the backbone, to createweb applications where data can be loaded in the background, avoiding the need for full page reloads. This sparked a renaissance period of JavaScript, spearheaded by open-source libraries and the communities that formed around them. Many new libraries were created, includingjQuery,Prototype,Dojo Toolkit, andMooTools.

Google debuted itsChrome browser in 2008, with theV8 JavaScript engine that was faster than its competition.[23][24] The key innovation wasjust-in-time compilation (JIT),[25] so other browser vendors needed to overhaul their engines for JIT.[26]

In July 2008, these disparate parties came together for a conference inOslo. This led to the eventual agreement in early 2009 to combine all relevant work and drive the language forward. The result was the ECMAScript 5 standard, released in December 2009.

Reaching maturity

Ambitious work on the language continued for several years, culminating in an extensive collection of additions and refinements being formalized with the publication ofECMAScript 6 in 2015.[27]

The creation ofNode.js in 2009 byRyan Dahl sparked a significant increase in the usage of JavaScript outside of web browsers. Node combines theV8 engine, anevent loop, andI/OAPIs, thereby providing a stand-alone JavaScript runtime system.[28][29] As of 2018, Node had been used by millions of developers,[30] andnpm had the most modules of anypackage manager in the world.[31]

The ECMAScript draft specification is currently maintained openly onGitHub,[32] and editions are produced via regular annual snapshots.[32] Potential revisions to the language are vetted through a comprehensive proposal process.[33][34] Now, instead of edition numbers, developers check the status of upcoming features individually.[32]

The current JavaScript ecosystem has manylibraries andframeworks, established programming practices, and substantial usage of JavaScript outside of web browsers.[16] Plus, with the rise ofsingle-page applications and other JavaScript-heavy websites, severaltranspilers have been created to aid the development process.[35]

Trademark

"JavaScript" is atrademark ofOracle Corporation in the United States.[36][37] The trademark was originally issued toSun Microsystems on 6 May 1997, and was transferred to Oracle when they acquired Sun in 2009.[38][39]

A letter was circulated in September 2024, spearheaded byRyan Dahl, calling on Oracle to free the JavaScript trademark.[40]Brendan Eich, the original creator of JavaScript, was among the over 14,000 signatories who supported the initiative.

Website client-side usage

JavaScript is the dominantclient-sidescripting language of the Web, with 99% of allwebsites using it for this purpose.[10] Scripts are embedded in or included fromHTML documents and interact with theDOM.

All majorweb browsers have a built-inJavaScript engine that executes thecode on the user's device.

Examples of scripted behavior

Libraries and frameworks

Over 80% of websites use a third-party JavaScriptlibrary orweb framework as part of their client-side scripting.[41]

jQuery is by far the most-used.[41] Other notable ones includeAngular,Bootstrap,Lodash,Modernizr,React,Underscore, andVue.[41] Multiple options can be used in conjunction, such as jQuery and Bootstrap.[42]

However, the term "Vanilla JS" was coined for websites not using any libraries or frameworks at all, instead relying entirely on standard JavaScript functionality.[43]

Other usage

The use of JavaScript has expanded beyond itsweb browser roots.JavaScript engines are now embedded in a variety of other software systems, both forserver-side website deployments and non-browserapplications.

Initial attempts at promoting server-side JavaScript usage wereNetscape Enterprise Server andMicrosoft'sInternet Information Services,[44][45] but they were small niches.[46] Server-side usage eventually started to grow in the late 2000s, with the creation ofNode.js andother approaches.[46]

Electron,Cordova,React Native, and otherapplication frameworks have been used to create many applications with behavior implemented in JavaScript. Other non-browser applications includeAdobe Acrobat support for scriptingPDF documents[47] andGNOME Shell extensions written in JavaScript.[48]

Oracle used to provide Nashorn, a JavaScript interpreter, as part of theirJava Development Kit (JDK) API library along withjjs a command line interpreter as of JDK version 8. It was removed in JDK 15. As a replacement Oracle offered GraalJS which can also be used with theOpenJDK which allows one to create and reference Java objects in JavaScript code and add runtime scripting in JavaScript to applications written in Java.[49][50][51][52]

JavaScript has been used in someembedded systems, usually by leveraging Node.js.[53][54][55]

Execution

JavaScript engine

This section is an excerpt fromList of JavaScript engines.[edit]
The firstengines for JavaScript were mereinterpreters of thesource code, but all relevant modern engines usejust-in-time compilation for improved performance.[56] JavaScript engines are typically developed byweb browser vendors, and every major browser has one. In a browser, the JavaScript engine runs in concert with therendering engine via theDocument Object Model andWeb IDL bindings.[57] However, the use of JavaScript engines is not limited to browsers; for example, theV8 engine is a core component of theNode.jsruntime system.[58] They are also calledECMAScript engines, after the official name of the specification. With the advent ofWebAssembly, some engines can also execute this code in the samesandbox as regular JavaScript code.[59][58]

Runtime system

A JavaScript engine must be embedded within aruntime system (such as aweb browser or a standalone system) to enable scripts to interact with the broader environment. The runtime system includes the necessary APIs forinput/output operations, such asnetworking,storage, andgraphics, and provides the ability to import scripts.

JavaScript is a single-threaded language. The runtime processesmessages from aqueue one at a time, and it calls afunction associated with each new message, creating acall stack frame with the function'sarguments andlocal variables. The call stack shrinks and grows based on the function's needs. When the call stack is empty upon function completion, JavaScript proceeds to the next message in the queue. This is called theevent loop, described as "run to completion" because each message is fully processed before the next message is considered. However, the language'sconcurrency model describes the event loop asnon-blocking: program I/O is performed usingevents andcallback functions. This means, for example, that JavaScript can process a mouse click while waiting for a database query to return information.[60]

The notable standalone runtimes areNode.js,Deno, andBun.

Features

The following features are common to all conforming ECMAScript implementations unless explicitly specified otherwise. The number of cited reserved words including keywords is 50-60 and varies depending on the implementation.

Imperative and structured

Main article:Structured programming

JavaScript supports much of thestructured programming syntax fromC (e.g.,if statements,while loops,switch statements,do while loops, etc.). One partial exception isscoping: originally JavaScript only hadfunction scoping withvar;block scoping was added in ECMAScript 2015 with the keywordslet andconst. Like C, JavaScript makes a distinction betweenexpressions andstatements. One syntactic difference from C isautomatic semicolon insertion, which allow semicolons (which terminate statements) to be omitted.[61]

Weakly typed

Further information:Weakly typed

JavaScript isweakly typed, which means certain types are implicitly cast depending on the operation used.[62]

  • The binary+ operator casts both operands to a string unless both operands are numbers. This is because the addition operator doubles as a concatenation operator
  • The binary- operator always casts both operands to a number
  • Both unary operators (+,-) always cast the operand to a number. However,+ always casts toNumber (binary64) while- preservesBigInt (integer)[63]

Values are cast to strings like the following:[62]

  • Strings are left as-is
  • Numbers are converted to their string representation
  • Arrays have their elements cast to strings after which they are joined by commas (,)
  • Other objects are converted to the string[object Object] whereObject is the name of the constructor of the object

Values are cast to numbers by casting to strings and then casting the strings to numbers. These processes can be modified by definingtoString andvalueOf functions on theprototype for string and number casting respectively.

JavaScript has received criticism for the way it implements these conversions as the complexity of the rules can be mistaken for inconsistency.[64][62] For example, when adding a number to a string, the number will be cast to a string before performing concatenation, but when subtracting a number from a string, the string is cast to a number before performing subtraction.

JavaScript type conversions
left operandoperatorright operandresult
[] (empty array)+[] (empty array)"" (empty string)
[] (empty array)+{} (empty object)"[object Object]" (string)
false (boolean)+[] (empty array)"false" (string)
"123"(string)+1 (number)"1231" (string)
"123" (string)-1 (number)122 (number)
"123" (string)-"abc" (string)NaN (number)

Often also mentioned is{} + [] resulting in0 (number). This is misleading: the{} is interpreted as an empty code block instead of an empty object, and the empty array is cast to a number by the remaining unary+ operator. If the expression is wrapped in parentheses -({} + []) – the curly brackets are interpreted as an empty object and the result of the expression is"[object Object]" as expected.[62]

Dynamic

Main article:Dynamic programming

Typing

Main article:Dynamic typing

JavaScript isdynamically typed like most otherscripting languages. Atype is associated with avalue rather than an expression. For example, avariable initially bound to a number may be reassigned to astring.[65] JavaScript supports various ways to test the type of objects, includingduck typing.[66]

Run-time evaluation

Main article:eval

JavaScript includes aneval function that can execute statements provided as strings at run-time.

Object-orientation (prototype-based)

Prototypal inheritance in JavaScript is described byDouglas Crockford as:

You make prototype objects, and then ... make new instances. Objects are mutable in JavaScript, so we can augment the new instances, giving them new fields and methods. These can then act as prototypes for even newer objects. We don't need classes to make lots of similar objects... Objects inherit from objects. What could be more object oriented than that?[67]

In JavaScript, anobject is anassociative array, augmented with a prototype (see below); each key provides the name for an objectproperty, and there are two syntactical ways to specify such a name: dot notation (obj.x = 10) and bracket notation (obj["x"] = 10). A property may be added, rebound, or deleted at run-time. Mostproperties of an object (and any property that belongs to an object's prototype inheritance chain) can be enumerated using afor...in loop.

Prototypes

Main article:Prototype-based programming

JavaScript usesprototypes where many other object-oriented languages useclasses forinheritance,[68] but it's still possible to simulate most class-based features with the prototype system.[69] Additionally,ECMAScript version 6 (released June 2015) introduced the keywordsclass,extends andsuper, which serve as syntactic sugar to abstract the underlying prototypal inheritance system with a more conventional interface. Constructors are declared by specifying a method namedconstructor, and all classes are automatically subclasses of the base class Object, similarly to Java.

classPerson{constructor(name){this.name=name;}}classStudentextendsPerson{constructor(name,id){super(name);this.id=id;}}constbob=newStudent("Robert",12345);console.log(bob.name);// Robert

Though the underlying object mechanism is still based on prototypes, the newer syntax is similar to other object oriented languages. Private variables are declared by prefixing the field name with anumber sign (#), andpolymorphism is not directly supported, although it can be emulated by manually calling different functions depending on the number and type of arguments provided.[70]

Functions as object constructors

Functions double as object constructors, along with their typical role. Prefixing a function call withnew will create an instance of a prototype, inheriting properties and methods from the constructor (including properties from theObject prototype).[71] ECMAScript 5 offers theObject.create method, allowing explicit creation of an instance without automatically inheriting from theObject prototype (older environments can assign the prototype tonull).[72] The constructor'sprototype property determines the object used for the new object's internal prototype. New methods can be added by modifying the prototype of the function used as a constructor.

// This code is completely equivalent to the previous snippetfunctionPerson(name){this.name=name;}functionStudent(name,id){Person.call(this,name);this.id=id;}varbob=newStudent("Robert",12345);console.log(bob.name);// Robert

JavaScript's built-in classes, such asArray andObject, also have prototypes that can be modified. However, it's generally considered bad practice tomodify built-in objects, because third-party code may use or inherit methods and properties from these objects, and may not expect the prototype to be modified.[73]

Functions as methods

Main article:Method (computer science)

Unlike in many object-oriented languages, in JavaScript there is no distinction between a function definition and amethod definition. Rather, the distinction occurs during function calling. When a function is called as a method of an object, the function's localthis keyword is bound to that object for that invocation.

Functional

Main article:Functional programming

JavaScriptfunctions arefirst-class; a function is considered to be an object.[74] As such, a function may have properties and methods, such as.call() and.bind().[75]

Lexical closure

Main article:Closure (computer programming)

Anested function is a function defined within another function. It is created each time the outer function is invoked.

In addition, each nested function forms alexical closure: thelexical scope of the outer function (including any constant, local variable, or argument value) becomes part of the internal state of each inner function object, even after execution of the outer function concludes.[76]

Anonymous function

Main article:Anonymous function

JavaScript also supportsanonymous functions.

Delegative

Main article:Delegation (object-oriented programming)

JavaScript supports implicit and explicitdelegation.

Functions as roles (Traits and Mixins)

Main articles:Role-oriented programming,Traits (computer science), andMixin

JavaScript natively supports various function-based implementations ofRole[77] patterns likeTraits[78][79] andMixins.[80] Such a function defines additional behavior by at least one method bound to thethis keyword within itsfunction body. A Role then has to be delegated explicitly viacall orapply to objects that need to feature additional behavior that is not shared via the prototype chain.

Object composition and inheritance

Whereas explicit function-based delegation does covercomposition in JavaScript, implicit delegation already happens every time the prototype chain is walked in order to, e.g., find a method that might be related to but is not directly owned by an object. Once the method is found it gets called within this object's context. Thusinheritance in JavaScript is covered by a delegation automatism that is bound to the prototype property of constructor functions.

Miscellaneous

Zero-based numbering

JavaScript is azero-index language.

Variadic functions

Main article:Variadic function

An indefinite number of parameters can be passed to a function. The function can access them throughformal parameters and also through the localarguments object.Variadic functions can also be created by using thebind method.

Array and object literals

Main articles:Associative arrays andObject literal

Like in many scripting languages, arrays and objects (associative arrays in other languages) can each be created with a succinct shortcut syntax. In fact, theseliterals form the basis of theJSON data format.

Regular expressions

Main article:Regular expression

JavaScript supportsregular expressions for text searches and manipulation.[71]: 139 

Promises
Main article:Futures and promises

A built-in Promise object provides functionality for handling promises and associating handlers with an asynchronous action's eventual result. JavaScript supplies combinator methods, which allow developers to combine multiple JavaScript promises and do operations based on different scenarios. The methods introduced are: Promise.race, Promise.all, Promise.allSettled and Promise.any.

Async/await
Main article:Async/await

Async/await allows an asynchronous, non-blocking function to be structured in a way similar to an ordinary synchronous function. Asynchronous, non-blocking code can be written, with minimal overhead, structured similarly to traditional synchronous, blocking code.

Vendor-specific extensions

Historically, someJavaScript engines supported these non-standard features:

  • array comprehensions and generator expressions (like Python)
  • concise function expressions (function(args) expr; this experimental syntax predated arrow functions)
  • ECMAScript for XML (E4X), an extension that adds native XML support to ECMAScript (unsupported in Firefox since version 21[81])

Syntax

Main article:JavaScript syntax

Variables in JavaScript can be defined using either thevar,[82]let[83] orconst[84] keywords. Variables defined without keywords will be defined at the global scope.

Arrow functions were first introduced in6th Edition – ECMAScript 2015. They shorten the syntax for writing functions in JavaScript. Arrow functions are anonymous, so a variable is needed to refer to them in order to invoke them after their creation, unless surrounded by parenthesis and executed immediately.

Here is an example of JavaScript syntax.

// Declares a function-scoped variable named `x`, and implicitly assigns the// special value `undefined` to it. Variables without value are automatically// set to undefined.// var is generally considered bad practice and let and const are usually preferred.varx;// Variables can be manually set to `undefined` like soletx2=undefined;// Declares a block-scoped variable named `y`, and implicitly sets it to// `undefined`. The `let` keyword was introduced in ECMAScript 2015.lety;// Declares a block-scoped, un-reassignable variable named `z`, and sets it to// a string literal. The `const` keyword was also introduced in ECMAScript 2015,// and must be explicitly assigned to.// The keyword `const` means constant, hence the variable cannot be reassigned// as the value is `constant`.constz="this value cannot be reassigned!";// Declares a global-scoped variable and assigns 3.  This is generally considered// bad practice, and will not work if strict mode is on.t=3;// Declares a variable named `myNumber`, and assigns a number literal (the value// `2`) to it.letmyNumber=2;// Reassigns `myNumber`, setting it to a string literal (the value `"foo"`).// JavaScript is a dynamically-typed language, so this is legal.myNumber="foo";

Note thecomments in the examples above, all of which were preceded with twoforward slashes.

More examples can be found at theWikibooks page on JavaScript syntax examples.

Security

See also:Browser security

JavaScript and theDOM provide the potential for malicious authors to deliver scripts to run on a client computer via the Web. Browser authors minimize this risk using two restrictions. First, scripts run in asandbox in which they can only perform Web-related actions, not general-purpose programming tasks like creating files. Second, scripts are constrained by thesame-origin policy: scripts from one website do not have access to information such as usernames, passwords, or cookies sent to another site. Most JavaScript-related security bugs are breaches of either the same origin policy or the sandbox.

There are subsets of general JavaScript—ADsafe, Secure ECMAScript (SES)—that provide greater levels of security, especially on code created by third parties (such as advertisements).[85][86] Closure Toolkit is another project for safe embedding and isolation of third-party JavaScript and HTML.[87]

Content Security Policy is the main intended method of ensuring that only trusted code is executed on a Web page.

Cross-site scripting

Main article:Cross-site scripting

A common JavaScript-related security problem iscross-site scripting (XSS), a violation of thesame-origin policy. XSS vulnerabilities occur when an attacker can cause a target Website, such as an online banking website, to include a malicious script in the webpage presented to a victim. The script in this example can then access the banking application with the privileges of the victim, potentially disclosing secret information or transferring money without the victim's authorization. One important solution to XSS vulnerabilities isHTML sanitization.

Some browsers include partial protection againstreflected XSS attacks, in which the attacker provides a URL including malicious script. However, even users of those browsers are vulnerable to other XSS attacks, such as those where the malicious code is stored in a database. Only correct design of Web applications on the server-side can fully prevent XSS.

XSS vulnerabilities can also occur because of implementation mistakes by browser authors.[88]

Cross-site request forgery

Main article:Cross-site request forgery

Another cross-site vulnerability iscross-site request forgery (CSRF). In CSRF, code on an attacker's site tricks the victim's browser into taking actions the user did not intend at a target site (like transferring money at a bank). When target sites rely solely on cookies for request authentication, requests originating from code on the attacker's site can carry the same valid login credentials of the initiating user. In general, the solution to CSRF is to require an authentication value in a hidden form field, and not only in the cookies, to authenticate any request that might have lasting effects. Checking the HTTP Referrer header can also help.

"JavaScript hijacking" is a type of CSRF attack in which a<script> tag on an attacker's site exploits a page on the victim's site that returns private information such asJSON or JavaScript. Possible solutions include:

  • requiring an authentication token in thePOST andGET parameters for any response that returns private information.

Misplaced trust in the client

Developers of client-server applications must recognize that untrusted clients may be under the control of attackers. The author of an application should not assume that their JavaScript code will run as intended (or at all) because any secret embedded in the code could be extracted by a determined adversary. Some implications are:

  • Website authors cannot perfectly conceal how their JavaScript operates because the raw source code must be sent to the client. The code can beobfuscated, but obfuscation can be reverse-engineered.
  • JavaScript form validation only provides convenience for users, not security. If a site verifies that the user agreed to its terms of service, or filters invalid characters out of fields that should only contain numbers, it must do so on the server, not only the client.
  • Scripts can be selectively disabled, so JavaScript cannot be relied on to prevent operations such as right-clicking on an image to save it.[89]
  • It is considered very bad practice to embed sensitive information such as passwords in JavaScript because it can be extracted by an attacker.[90]
  • Prototype pollution is a runtime vulnerability in which attackers can overwrite arbitrary properties in an object's prototype.

Misplaced trust in developers

Package management systems such asnpm and Bower are popular with JavaScript developers. Such systems allow a developer to easily manage their program's dependencies upon other developers' program libraries. Developers trust that the maintainers of the libraries will keep them secure and up to date, but that is not always the case. A vulnerability has emerged because of this blind trust. Relied-upon libraries can have new releases that cause bugs or vulnerabilities to appear in all programs that rely upon the libraries. Inversely, a library can go unpatched with known vulnerabilities out in the wild. In a study done looking over a sample of 133,000 websites, researchers found 37% of the websites included a library with at least one known vulnerability.[91] "The median lag between the oldest library version used on each website and the newest available version of that library is 1,177 days in ALEXA, and development of some libraries still in active use ceased years ago."[91] Another possibility is that the maintainer of a library may remove the library entirely. This occurred in March 2016 when Azer Koçulu removed his repository from npm. This caused tens of thousands of programs and websites depending upon his libraries to break.[92][93]

Browser and plugin coding errors

Further information:Buffer overflow

JavaScript provides an interface to a wide range of browser capabilities, some of which may have flaws such asbuffer overflows. These flaws can allow attackers to write scripts that would run any code they wish on the user's system. This code is not by any means limited to another JavaScript application. For example, a buffer overrun exploit can allow an attacker to gain access to the operating system'sAPI with superuser privileges.

These flaws have affected major browsers including Firefox,[94] Internet Explorer,[95] and Safari.[96]

Plugins, such as video players,Adobe Flash, and the wide range ofActiveX controls enabled by default in Microsoft Internet Explorer, may also have flaws exploitable via JavaScript (such flaws have been exploited in the past).[97][98]

In Windows Vista, Microsoft has attempted to contain the risks of bugs such as buffer overflows by running the Internet Explorer process with limited privileges.[99]Google Chrome similarly confines its page renderers to their own "sandbox".

Sandbox implementation errors

Web browsers are capable of running JavaScript outside the sandbox, with the privileges necessary to, for example, create or delete files. Such privileges are not intended to be granted to code from the Web.

Incorrectly granting privileges to JavaScript from the Web has played a role in vulnerabilities in both Internet Explorer[100] and Firefox.[101] In Windows XP Service Pack 2, Microsoft demoted JScript's privileges in Internet Explorer.[102]

Microsoft Windows allows JavaScript source files on a computer's hard drive to be launched as general-purpose, non-sandboxed programs (see:Windows Script Host). This makes JavaScript (likeVBScript) a theoretically viable vector for aTrojan horse, although JavaScript Trojan horses are uncommon in practice.[103][failed verification]

Hardware vulnerabilities

In 2015, a JavaScript-based proof-of-concept implementation of arowhammer attack was described in a paper by security researchers.[104][105][106][107]

In 2017, a JavaScript-based attack via browser was demonstrated that could bypassASLR. It is called "ASLR⊕Cache" or AnC.[108][109]

In 2018, the paper that announced theSpectre attacks against Speculative Execution in Intel and other processors included a JavaScript implementation.[110]

Development tools

Important tools have evolved with the language.

Related technologies

Java

A common misconception is that JavaScript is directly related toJava. Both indeed have a C-like syntax (the C language being their most immediate common ancestor language). They are also typicallysandboxed, and JavaScript was designed with Java's syntax and standard library in mind. In particular, all Java keywords were reserved in original JavaScript, JavaScript's standard library follows Java's naming conventions, and JavaScript'sMath andDate objects are based on classes from Java 1.0.[113]

Both languages first appeared in 1995, but Java was developed byJames Gosling of Sun Microsystems and JavaScript byBrendan Eich of Netscape Communications.

The differences between the two languages are more prominent than their similarities. Java hasstatic typing, while JavaScript's typing isdynamic. Java is loaded fromcompiled bytecode, while JavaScript is loaded as human-readable source code. Java's objects areclass-based, while JavaScript's areprototype-based. Finally, Java did not support functional programming until Java 8, while JavaScript has done so from the beginning, being influenced byScheme.

JSON

JSON is a data format derived from JavaScript; hence the name JavaScript Object Notation. It is a widely used format supported by many other programming languages.

Transpilers

Many websites are JavaScript-heavy, sotranspilers have been created to convert code written in other languages, which can aid the development process.[35]

TypeScript andCoffeeScript are two notable languages that transpile to JavaScript.

WebAssembly

WebAssembly is a newer language with abytecode format designed to complement JavaScript, especially the performance-critical portions ofweb page scripts. All of the majorJavaScript engines support WebAssembly,[114] which runs in the samesandbox as regular JavaScript code.

asm.js is a subset of JavaScript that served as the forerunner of WebAssembly.[115]

References

  1. ^ab"Netscape and Sun announce JavaScript, the Open, Cross-platform Object Scripting Language for Enterprise Networks and the Internet" (Press release). 4 December 1995. Archived fromthe original on 16 September 2007.
  2. ^"ECMAScript® 2024 Language Specification". June 2024. Retrieved30 August 2024.
  3. ^"ECMAScript® 2025 Language Specification". 27 March 2024. Retrieved17 April 2024.
  4. ^"nodejs/node-eps".GitHub.Archived from the original on 29 August 2020. Retrieved5 July 2018.
  5. ^abSeibel, Peter (16 September 2009).Coders at Work: Reflections on the Craft of Programming. Apress.ISBN 978-1-4302-1948-4.Archived from the original on 24 December 2020. Retrieved25 December 2018.Eich: The immediate concern at Netscape was it must look like Java.
  6. ^abcde"Chapter 4. How JavaScript Was Created".speakingjs.com.Archived from the original on 27 February 2020. Retrieved21 November 2017.
  7. ^"Popularity – Brendan Eich".
  8. ^"Brendan Eich: An Introduction to JavaScript, JSConf 2010".YouTube. 20 January 2013. p. 22m.Archived from the original on 29 August 2020. Retrieved25 November 2019.Eich: "function", eight letters, I was influenced by AWK.
  9. ^Eich, Brendan (1998). "Foreword". InGoodman, Danny (ed.).JavaScript Bible (3rd ed.).John Wiley & Sons.ISBN 0-7645-3188-3.LCCN 97078208.OCLC 38888873.OL 712205M.
  10. ^ab"Usage Statistics of JavaScript as Client-side Programming Language on Websites".W3Techs. Retrieved27 February 2024.
  11. ^"ECMAScript 2020 Language Specification".Archived from the original on 8 May 2020. Retrieved8 May 2020.
  12. ^Enzer, Larry (31 August 2018)."The Evolution of the Web Browsers".Monmouth Web Developers. Archived fromthe original on 31 August 2018. Retrieved31 August 2018.
  13. ^abcFin JS (17 June 2016),"Brendan Eich – CEO of Brave",YouTube, retrieved7 February 2018
  14. ^"Netscape Communications Corp.", Browser enhancements. Encyclopædia Britannica 2006 Ultimate Reference Suite DVD
  15. ^"TechVision: Innovators of the Net: Brendan Eich and JavaScript". Archived fromthe original on 8 February 2008.
  16. ^abHan, Sheon (4 March 2024)."JavaScript Runs the World—Maybe Even Literally".Wired. Retrieved21 August 2024.
  17. ^ab"Chapter 5. Standardization: ECMAScript".speakingjs.com. Archived fromthe original on 1 November 2021. Retrieved1 November 2021.
  18. ^abChampeon, Steve (6 April 2001)."JavaScript, How Did We Get Here?".oreilly.com. Archived fromthe original on 19 July 2016. Retrieved16 July 2016.
  19. ^"Microsoft Internet Explorer 3.0 Beta Now Available".microsoft.com. Microsoft. 29 May 1996.Archived from the original on 24 November 2020. Retrieved16 July 2016.
  20. ^McCracken, Harry (16 September 2010)."The Unwelcome Return of "Best Viewed with Internet Explorer"".technologizer.com.Archived from the original on 23 June 2018. Retrieved16 July 2016.
  21. ^Baker, Loren (24 November 2004)."Mozilla Firefox Internet Browser Market Share Gains to 7.4%".Search Engine Journal.Archived from the original on 7 May 2021. Retrieved8 May 2021.
  22. ^Weber, Tim (9 May 2005)."The assault on software giant Microsoft".BBC News. Archived fromthe original on 25 September 2017.
  23. ^"Big browser comparison test: Internet Explorer vs. Firefox, Opera, Safari and Chrome".PC Games Hardware. Computec Media AG. 3 July 2009.Archived from the original on 2 May 2012. Retrieved28 June 2010.
  24. ^Purdy, Kevin (11 June 2009)."Lifehacker Speed Tests: Safari 4, Chrome 2".Lifehacker.Archived from the original on 14 April 2021. Retrieved8 May 2021.
  25. ^"TraceMonkey: JavaScript Lightspeed, Brendan Eich's Blog".Archived from the original on 4 December 2015. Retrieved22 July 2020.
  26. ^"Mozilla asks, 'Are we fast yet?'".Wired.Archived from the original on 22 June 2018. Retrieved18 January 2019.
  27. ^"ECMAScript 6: New Features: Overview and Comparison".es6-features.org. Archived from the original on 18 March 2018. Retrieved19 March 2018.
  28. ^Professional Node.js: Building JavaScript Based Scalable SoftwareArchived 2017-03-24 at theWayback Machine, John Wiley & Sons, 01-Oct-2012
  29. ^Sams Teach Yourself Node.js in 24 HoursArchived 2017-03-23 at theWayback Machine, Sams Publishing, 05-Sep-2012
  30. ^Lawton, George (19 July 2018)."The secret history behind the success of npm and Node".TheServerSide.Archived from the original on 2 August 2021. Retrieved2 August 2021.
  31. ^Brown, Paul (13 January 2017)."State of the Union: npm".Linux.com.Archived from the original on 2 August 2021. Retrieved2 August 2021.
  32. ^abcBranscombe, Mary (4 May 2016)."JavaScript Standard Moves to Yearly Release Schedule; Here is What's New for ES16".The New Stack.Archived from the original on 16 January 2021. Retrieved15 January 2021.
  33. ^"The TC39 Process".tc39.es. Ecma International.Archived from the original on 7 February 2021. Retrieved15 January 2021.
  34. ^"ECMAScript proposals". TC39.Archived from the original on 4 December 2020. Retrieved15 January 2021.
  35. ^abAshkenas, Jeremy."List of languages that compile to JS".GitHub.Archived from the original on 31 January 2020. Retrieved6 February 2020.
  36. ^"U.S. Trademark Serial No. 75026640".uspto.gov.United States Patent and Trademark Office. 6 May 1997.Archived from the original on 13 July 2021. Retrieved8 May 2021.
  37. ^"Legal Notices".oracle.com.Oracle Corporation.Archived from the original on 5 June 2021. Retrieved8 May 2021.
  38. ^"Oracle to buy Sun in $7.4-bn deal".The Economic Times. 21 April 2009.
  39. ^Claburn, Thomas (17 September 2024)."Oracle urged again to give up JavaScript trademark".The Register. Retrieved2 February 2025.
  40. ^Krill, Paul (20 September 2024)."JavaScript community challenges Oracle's JavaScript trademark".InfoWorld.
  41. ^abc"Usage statistics of JavaScript libraries for websites".W3Techs. Retrieved9 April 2021.
  42. ^"Using jQuery with Bootstrap".clouddevs.com. 10 June 2019. Retrieved17 March 2024.
  43. ^"Vanilla JS".vanilla-js.com. 16 June 2020.Archived from the original on 16 June 2020. Retrieved17 June 2020.
  44. ^"Server-Side JavaScript Guide".oracle.com.Oracle Corporation. 11 December 1998.Archived from the original on 11 March 2021. Retrieved8 May 2021.
  45. ^Clinick, Andrew (14 July 2000)."Introducing JScript .NET".Microsoft Developer Network. Microsoft.Archived from the original on 10 November 2017. Retrieved10 April 2018.[S]ince the 1996 introduction of JScript version 1.0 ... we've been seeing a steady increase in the usage of JScript on the server—particularly in Active Server Pages (ASP)
  46. ^abMahemoff, Michael (17 December 2009)."Server-Side JavaScript, Back with a Vengeance".readwrite.com.Archived from the original on 17 June 2016. Retrieved16 July 2016.
  47. ^"JavaScript for Acrobat".adobe.com. 7 August 2009.Archived from the original on 7 August 2009. Retrieved18 August 2009.
  48. ^treitter (2 February 2013)."Answering the question: "How do I develop an app for GNOME?"".livejournal.com.Archived from the original on 11 February 2013. Retrieved7 February 2013.
  49. ^Ponge, Julien (19 April 2018)."Oracle Nashorn: A Next-Generation JavaScript Engine for the JVM".oracle.com. Oracle Corporation. Retrieved17 February 2025.
  50. ^"Migration Guide from Nashorn to GraalJS".graalvm.org. Retrieved17 February 2025.
  51. ^"GraalJS". GraalVM. Retrieved17 February 2025.
  52. ^"Java Interoperability".oracle.com. Oracle. Retrieved17 February 2025.
  53. ^"Tessel 2... Leverage all the libraries of Node.JS to create useful devices in minutes with Tessel".tessel.io.Archived from the original on 26 May 2021. Retrieved8 May 2021.
  54. ^"Node.js Raspberry Pi GPIO Introduction".w3schools.com.Archived from the original on 13 August 2021. Retrieved3 May 2020.
  55. ^"Espruino – JavaScript for Microcontrollers".espruino.com.Archived from the original on 1 May 2020. Retrieved3 May 2020.
  56. ^Looper, Jen (21 September 2015)."A Guide to JavaScript Engines for Idiots".Telerik Developer Network. Archived fromthe original on 8 December 2018. Retrieved8 December 2018.
  57. ^"How Blink Works". Google. Retrieved12 March 2024.
  58. ^ab"Documentation · V8". Google. Retrieved3 March 2024.
  59. ^Nelaturu, Keerthi."WebAssembly: What's the big deal?".medium.com. Retrieved3 March 2024.
  60. ^"Concurrency model and Event Loop".Mozilla Developer Network.Archived from the original on 5 September 2015. Retrieved28 August 2015.
  61. ^Flanagan, David (17 August 2006).#"/wiki/O%27Reilly_Media,_Inc." title="O'Reilly Media, Inc.">O'Reilly Media, Inc. p. 16.ISBN 978-0-596-55447-7.Archived from the original on 1 August 2020. Retrieved29 March 2019.
  62. ^abcdKorolev, Mikhail (1 March 2019)."JavaScript quirks in one image from the Internet".The DEV Community.Archived from the original on 28 October 2019. Retrieved28 October 2019.
  63. ^"Proposal-bigint/ADVANCED.md at master · tc39/Proposal-bigint".GitHub.
  64. ^Bernhardt, Gary (2012)."Wat".Destroy All Software.Archived from the original on 28 October 2019. Retrieved28 October 2019.
  65. ^"JavaScript data types and data structures".MDN. 16 February 2017.Archived from the original on 14 March 2017. Retrieved24 February 2017.
  66. ^Flanagan 2006, pp. 176–178.
  67. ^Crockford, Douglas."Prototypal Inheritance in JavaScript".Archived from the original on 13 August 2013. Retrieved20 August 2013.
  68. ^"Inheritance and the prototype chain".Mozilla Developer Network.Archived from the original on 25 April 2013. Retrieved6 April 2013.
  69. ^Herman, David (2013).Effective JavaScript. Addison-Wesley. p. 83.ISBN 978-0-321-81218-6.
  70. ^Ghandi, Raju (2019).JavaScript Next. New York City: Apress Media. pp. 159–171.ISBN 978-1-4842-5394-6.
  71. ^abHaverbeke, Marijn (September 2024).Eloquent JavaScript(PDF) (4th ed.). San Francisco:No Starch Press. pp. 97–98.ISBN 978-1-71850-411-0.Archived(PDF) from the original on 12 March 2025.
  72. ^Katz, Yehuda (12 August 2011)."Understanding "Prototypes" in JavaScript".Archived from the original on 5 April 2013. Retrieved6 April 2013.
  73. ^Herman, David (2013).Effective JavaScript. Addison-Wesley. pp. 125–127.ISBN 978-0-321-81218-6.
  74. ^"Function – JavaScript".MDN Web Docs. Retrieved30 October 2021.
  75. ^"Properties of the Function Object". Es5.github.com.Archived from the original on 28 January 2013. Retrieved26 May 2013.
  76. ^Flanagan 2006, p. 141.
  77. ^The many talents of JavaScript for generalizing Role-Oriented Programming approaches like Traits and MixinsArchived 2017-10-05 at theWayback Machine, Peterseliger.blogspot.de, April 11, 2014.
  78. ^Traits for JavaScriptArchived 2014-07-24 at theWayback Machine, 2010.
  79. ^"Home | CocktailJS".Cocktailjs.github.io.Archived from the original on 4 February 2017. Retrieved24 February 2017.
  80. ^Croll, Angus (31 May 2011)."A fresh look at JavaScript Mixins".JavaScript, JavaScript….Archived from the original on 15 April 2020.
  81. ^"E4X – Archive of obsolete content".Mozilla Developer Network. Mozilla Foundation. 14 February 2014. Archived fromthe original on 24 July 2014. Retrieved13 July 2014.
  82. ^"var – JavaScript". TheMozilla Developer Network.Archived from the original on 23 December 2012. Retrieved22 December 2012.
  83. ^"let".MDN web docs. Mozilla.Archived from the original on 28 May 2019. Retrieved27 June 2018.
  84. ^"const".MDN web docs. Mozilla.Archived from the original on 28 June 2018. Retrieved27 June 2018.
  85. ^"Making JavaScript Safe for Advertising". ADsafe.Archived from the original on 6 July 2021. Retrieved8 May 2021.
  86. ^"Secure ECMA Script (SES)".Archived from the original on 15 May 2013. Retrieved26 May 2013.
  87. ^"Google Caja Project".Google.Archived from the original on 22 January 2021. Retrieved9 July 2021.
  88. ^"Mozilla Cross-Site Scripting Vulnerability Reported and Fixed – MozillaZine Talkback".Mozillazine.org.Archived from the original on 21 July 2011. Retrieved24 February 2017.
  89. ^Kottelin, Thor (17 June 2008)."Right-click "protection"? Forget about it".blog.anta.net. Archived fromthe original on 9 August 2011. Retrieved28 July 2022.
  90. ^Rehorik, Jan (29 November 2016)."Why You Should Never Put Sensitive Data in Your JavaScript".ServiceObjects Blog. ServiceObjects.Archived from the original on 3 June 2019. Retrieved3 June 2019.
  91. ^abLauinger, Tobias; Chaabane, Abdelberi; Arshad, Sajjad; Robertson, William; Wilson, Christo; Kirda, Engin (21 December 2016),"Thou Shalt Not Depend on Me: Analysing the Use of Outdated JavaScript Libraries on the Web"(PDF),Northeastern University,arXiv:1811.00918,doi:10.14722/ndss.2017.23414,ISBN 978-1-891562-46-4,S2CID 17885720, archived fromthe original(PDF) on 29 March 2017, retrieved28 July 2022
  92. ^Collins, Keith (27 March 2016)."How one programmer broke the internet by deleting a tiny piece of code".Quartz.Archived from the original on 22 February 2017. Retrieved22 February 2017.
  93. ^SC Magazine UK,Developer's 11 lines of deleted code 'breaks the internet'Archived February 23, 2017, at theWayback Machine
  94. ^Mozilla Corporation,Buffer overflow in crypto.signText()Archived 2014-06-04 at theWayback Machine
  95. ^Festa, Paul (19 August 1998)."Buffer-overflow bug in IE".CNET. Archived fromthe original on 25 December 2002.
  96. ^SecurityTracker.com,Apple Safari JavaScript Buffer Overflow Lets Remote Users Execute Arbitrary Code and HTTP Redirect Bug Lets Remote Users Access FilesArchived 2010-02-18 at theWayback Machine
  97. ^SecurityFocus,Microsoft WebViewFolderIcon ActiveX Control Buffer Overflow VulnerabilityArchived 2011-10-11 at theWayback Machine
  98. ^Fusion Authority,Macromedia Flash ActiveX Buffer OverflowArchived August 13, 2011, at theWayback Machine
  99. ^"Protected Mode in Vista IE7 – IEBlog".Blogs.msdn.com. 9 February 2006.Archived from the original on 23 January 2010. Retrieved24 February 2017.
  100. ^US CERT,Vulnerability Note VU#713878: Microsoft Internet Explorer does not properly validate source of redirected frameArchived 2009-10-30 at theWayback Machine
  101. ^Mozilla Foundation,Mozilla Foundation Security Advisory 2005–41: Privilege escalation via DOM property overridesArchived 2014-06-04 at theWayback Machine
  102. ^Andersen, Starr (9 August 2004)."Part 5: Enhanced Browsing Security".TechNet.Microsoft Docs. Changes to Functionality in Windows XP Service Pack 2. Retrieved20 October 2021.
  103. ^For one example of a rare JavaScript Trojan Horse, see Symantec Corporation,JS.Seeker.KArchived 2011-09-13 at theWayback Machine
  104. ^Gruss, Daniel; Maurice, Clémentine; Mangard, Stefan (24 July 2015). "Rowhammer.js: A Remote Software-Induced Fault Attack in JavaScript".arXiv:1507.06955 [cs.CR].
  105. ^Jean-Pharuns, Alix (30 July 2015)."Rowhammer.js Is the Most Ingenious Hack I've Ever Seen".Motherboard.Vice.Archived from the original on 27 January 2018. Retrieved26 January 2018.
  106. ^Goodin, Dan (4 August 2015)."DRAM 'Bitflipping' exploit for attacking PCs: Just add JavaScript".Ars Technica.Archived from the original on 27 January 2018. Retrieved26 January 2018.
  107. ^Auerbach, David (28 July 2015)."Rowhammer security exploit: Why a new security attack is truly terrifying".slate.com.Archived from the original on 30 July 2015. Retrieved29 July 2015.
  108. ^AnCArchived 2017-03-16 at theWayback Machine VUSec, 2017
  109. ^New ASLR-busting JavaScript is about to make drive-by exploits much nastierArchived 2017-03-16 at theWayback Machine Ars Technica, 2017
  110. ^Spectre AttackArchived 2018-01-03 at theWayback Machine Spectre Attack
  111. ^"Benchmark.js".benchmarkjs.com.Archived from the original on 19 December 2016. Retrieved6 November 2016.
  112. ^JSBEN.CH."JSBEN.CH Performance Benchmarking Playground for JavaScript".jsben.ch.Archived from the original on 27 February 2021. Retrieved13 August 2021.
  113. ^Eich, Brendan (3 April 2008)."Popularity".Archived from the original on 3 July 2011. Retrieved19 January 2012.
  114. ^"Edge Browser Switches WebAssembly to 'On' -- Visual Studio Magazine".Visual Studio Magazine.Archived from the original on 10 February 2018. Retrieved9 February 2018.
  115. ^"frequently asked questions". asm.js.Archived from the original on 4 June 2014. Retrieved13 April 2014.

Further reading

See also:ECMAScript Specification Documents

External links

JavaScript at Wikipedia'ssister projects
Listen to this article (48 minutes)
Spoken Wikipedia icon
This audio file was created from a revision of this article dated 20 August 2013 (2013-08-20), and does not reflect subsequent edits.
(Audio help ·More spoken articles)
Code analysis
Supersets
Transpilers
Concepts
Debuggers
Documentation generators
Editors (comparison)
Engines
Frameworks
Relatedtechnologies
Package managers
Module bundlers
Server-side
Unit testing frameworks (list)
People
Dialects
Engines
(list)
Frameworks
Client-side
Server-side
Multiple
  • Cappuccino
Libraries
People
Other
  • Features
  • standards
  • protocols
Features
Web standards
Protocols
Active
Blink-based
Proprietary
FOSS
Gecko-based
WebKit-based
Multi-engine
Other
Discontinued
Blink-based
Gecko-based
MSHTML-based
WebKit-based
Other
Platform
Frameworks
Libraries
Languages
Portal:
International
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=JavaScript&oldid=1297663780#Server-side_JavaScript"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp