Jump to content

JavaScript: Difference between revisions

From EdwardWiki
Bot (talk | contribs)
m Created article 'JavaScript' with auto-categories 🏷️
Bot (talk | contribs)
m Created article 'JavaScript' with auto-categories 🏷️
Β 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''JavaScript''' is a high-level, dynamic, untyped, and interpreted programming language that is widely used to create interactive effects within web browsers. Initially developed by Brendan Eich at Netscape in 1995, it has since become a core technology of the World Wide Web, alongside HTML and CSS. JavaScript enables developers to implement complex features on web pages, such as real-time updates, multimedia, animated graphics, and interactive maps. As a result of its versatility and extensive ecosystem, JavaScript has evolved far beyond its initial purpose of enhancing the user experience in web applications.
'''JavaScript''' is a high-level, dynamic, untyped, and interpreted programming language that is primarily used to enhance the interaction and functionality of web pages. Originally developed by Brendan Eich at Netscape as a client-side scripting language, JavaScript has evolved to serve a variety of programming paradigms, including event-driven, functional, and imperative programming. It plays a crucial role in the modern web development landscape, making it an indispensable tool for developers worldwide.


== History ==
== History ==


=== Origins ===
JavaScript was created in 1995 when Brendan Eich was employed by Netscape Communications Corporation. The initial idea was to enable client-side scripts to make web pages more interactive and to allow users to engage with content without needing to reload the entire page. Eich developed the first version of the language in just ten days, and it was first released under the name Mocha, later renamed to LiveScript, and finally called JavaScript.
JavaScript was originally conceived and developed in 1995 by Brendan Eich at Netscape. The language was initially named "Mocha," then renamed to "LiveScript," and finally became known as "JavaScript." The name change was a marketing strategy to exploit the popularity of the Java programming language, although the two languages are distinct in design and functionality.


The first version of JavaScript was shipped with Netscape Navigator 3.0 in 1996. Its release marked the beginnings of widespread recognition and adoption of scripting languages in web browsers. Eich created the language following the belief that browsers needed a lightweight programming language to handle client-side scripting, which would allow for dynamic HTML content.
In 1996, JavaScript was standardized by ECMA International, an organization responsible for standardizing the syntax and semantics of the language. The first edition of the standard, known as ECMAScript 1, was published in June 1997. Subsequent versions, such as ECMAScript 2 (released in 1998) and ECMAScript 3 (released in 1999), introduced improvements and new features, including regular expressions, try/catch for exception handling, and better string manipulation capabilities.


=== Standardization ===
The explosion of web development in the early 2000s led to the emergence of frameworks and libraries designed to simplify JavaScript's use, such as jQuery. In 2009, ECMAScript 5 was released, introducing new features like JSON support and stricter error handling. This marked a pivotal moment in the language's history, ensuring its relevance in modern application development.
To ensure interoperability among different web browsers, JavaScript was standardized under the name ECMAScript by the European Computer Manufacturers Association (ECMA) in 1997. The first edition of ECMAScript was released as ECMA-262, providing a specification that defines the core features and syntax. Over the years, new versions of ECMAScript have been released, each enhancing the language's capabilities and introducing new features to enable modern web development. Notable versions include ECMAScript 5 (2009), which brought significant improvements such as support for JSON and stricter syntax rules; ECMAScript 6 (2015), also known as ECMAScript 2015, introduced major advancements like classes, modules, and arrow functions; and subsequent yearly updates known as ECMAScript 2016 through ECMAScript 2022 have continued to expand language features.


== Language Structure ==
In 2015, ECMAScript 6 (ES6), also known as ECMAScript 2015, was released, which brought significant enhancements to the language, including syntax improvements for classes and modules, arrow functions, template literals, and promises. This version was integral to the evolution of JavaScript and paved the way for a new generation of frameworks such as Angular, React, and Vue.js.


=== Syntax and Basics ===
Subsequent versions of ECMAScript have continued to build upon these advancements, with annual updates that introduce new functionality, such as async/await in 2017 (ES8) and optional chaining in 2020 (ES11).
The syntax of JavaScript is influenced by the C programming language, making it relatively familiar to those with a background in C, Java, or C++. JavaScript is an interpreted language, which means that it does not require a separate compilation step before execution. The basic syntax adheres to well-defined rules governing the use of identifiers, variables, data types, operators, statements, and functions.


Variables in JavaScript can be declared using the keywords '''var''', '''let''', or '''const'''. While '''var''' was the traditional way to define variables, it is now often regarded as outdated due to issues with scoping. The introduction of '''let''' and '''const''' with ECMAScript 6 allows for block-level scoping and constants, respectively, fostering better practice in variable management.
== Architecture and Design ==


JavaScript supports a variety of data types including primitives such as numbers, strings, and booleans, alongside complex types like objects and arrays. Functions are first-class objects in JavaScript, enabling them to be passed as arguments, returned from other functions, and assigned to variables. Furthermore, the language supports both object-oriented programming using prototypes and functional programming paradigms.
JavaScript is a multi-paradigm language that supports event-driven, functional, and imperative programming styles. Its design allows for the creation of dynamic and interactive web applications. The core architecture of JavaScript consists of the following components:


=== Object-Oriented Programming ===
=== Execution Context ===
JavaScript employs a prototype-based inheritance model, differing from classical inheritance found in languages such as Java and C++. In this model, objects can directly inherit properties and methods from other objects, supporting an implicit delegation model. Developers can create objects using constructor functions or the modern class syntax introduced in ECMAScript 6.


The dynamic nature of JavaScript allows for rich interaction with web APIs and DOM manipulation, making it an essential tool for front-end development. With its ability to create custom objects through prototypes, developers can extend built-in objects and create reusable components that enhance code modularity.
JavaScript operates within an execution context, which creates the environment in which the code is executed. There are two primary types of execution contexts: global and function. The global execution context is created when the JavaScript file is first run, while the function execution context is created whenever a function is invoked. Each execution context contains a variable object, a scope chain, and a value of the 'this' keyword that refers to the context in which the function was called.


=== Asynchronous Programming ===
=== Variable Scope ===
JavaScript is inherently single-threaded, meaning it executes code sequentially; however, it incorporates asynchronous programming practices through callbacks, promises, and async/await syntax. These features allow developers to handle tasks that might otherwise block the main execution thread, such as network requests or long-running computations.


Callbacks were the initial approach for handling asynchronous processes, though they often led to callback hellβ€”a situation characterized by deeply nested functions that are difficult to read and maintain. Promises were introduced in ECMAScript 2015 to address this issue by allowing developers to chain asynchronous operations more clearly. Furthermore, the async/await syntax, introduced in ECMAScript 2017, provides a more synchronous-looking way to handle asynchronous code, thereby simplifying the development process and improving readability.
JavaScript uses function scope and block scope to control variable access and lifespan. Variables declared with the 'var' keyword are scoped to the function they were declared in, while variables declared with 'let' and 'const' have block scope, meaning they are only accessible within a specific block of code. This distinction is critical for preventing variable name clashes and other logical errors in code.
Β 
=== Prototypal Inheritance ===
Β 
Unlike classical inheritance found in languages such as Java or C++, JavaScript employs prototypal inheritance. This means that objects can inherit properties and methods from other objects, allowing for more flexible object-oriented programming. Each object has a prototype, and when a property or method is not found on the object itself, JavaScript checks the prototype chain to find it.
Β 
=== Event Loop ===
Β 
The JavaScript runtime operates on a single-threaded event loop, which allows asynchronous programming. When long-running operations, such as network requests or timers, are processed, JavaScript can continue executing other code in the call stack. This non-blocking architecture is critical for creating responsive applications, especially in web environments where performance is paramount.


== Implementation ==
== Implementation ==


=== Web Development ===
JavaScript's implementation is most commonly found in web browsers, where it operates within a host environment. Major web browsers, including Google Chrome, Mozilla Firefox, Safari, and Microsoft Edge, incorporate JavaScript engines such as V8 (Chrome), SpiderMonkey (Firefox), and JavaScriptCore (Safari). Each engine optimizes the interpretation and execution of JavaScript code to improve performance and responsiveness.
JavaScript is ubiquitous in web development and serves as the foundation for client-side programming. It is utilized in conjunction with HTML and CSS to create fully interactive and dynamic web pages. With the advent of modern web development frameworks and libraries such as Angular, React, and Vue.js, JavaScript has cemented its position as a powerful tool for building single-page applications (SPAs) that offer rich, seamless user experiences.
Β 
=== JavaScript in Web Browsers ===
Β 
Within a web browser, JavaScript enables developers to modify Document Object Model (DOM) elements dynamically, manage user interactions, and communicate with remote servers through AJAX (Asynchronous JavaScript and XML). This capability allows for the creation of rich, interactive web applications that enhance user experience.
Β 
A common use of JavaScript is in form validation. By using JavaScript to validate user input before submitting data to a server, developers can provide instant feedback and prevent unnecessary round trips to the server. This approach significantly enhances the usability of web applications.


Frameworks enable developers to create reusable components, structure applications more efficiently, and significantly enhance productivity. The use of JavaScript for server-side programming has also gained momentum with the introduction of Node.js, allowing developers to write JavaScript code on the server side and manage databases, handle HTTP requests, and integrate other server-side functionality.
=== Server-side JavaScript ===


=== Mobile and Desktop Applications ===
While JavaScript originated as a client-side scripting language, it has gained traction for server-side programming thanks to environments such as Node.js. Released in 2009, Node.js allows developers to use JavaScript to build scalable network applications on the server side. This has opened up new opportunities for using JavaScript beyond the browser, enabling the development of full-stack applications where both the client and the server use the same programming language.
Beyond web development, JavaScript has expanded into mobile and desktop application development. Frameworks such as React Native allow developers to utilize JavaScript to build mobile applications for both iOS and Android using a single codebase. Similarly, Electron enables developers to create cross-platform desktop applications with web technologies, facilitating the use of web development skills for native application development.
Β 
Node.js employs non-blocking I/O operations, making it particularly suitable for creating applications that require high concurrency. This architecture has led to the popularity of real-time applications such as chat services and collaborative tools.


In this context, JavaScript’s versatility is to be commended, as it allows developers to utilize a unified language across different platforms, thereby simplifying the development process and reducing the learning curve associated with mastering multiple languages.
=== Integration with Other Technologies ===


=== Game Development ===
JavaScript often interacts with other web technologies like HTML and CSS to create a seamless user experience. Various libraries and frameworks, such as React, Angular, and Vue.js, build upon JavaScript's capabilities to streamline development processes. These tools enhance productivity by providing pre-built components, data binding, and advanced state management techniques.
JavaScript has also made strides in the realm of game development, with libraries such as Phaser and Three.js for 2D and 3D graphics, respectively. These libraries take advantage of HTML5 features like the Canvas API and WebGL to create visually rich interactive experiences in the browser. Modern game engines built on JavaScript promote efficient performance and interactivity, enabling game developers to create complex games that can be played directly in the browser without additional plug-ins.


Moreover, the integration of JavaScript with WebSockets and other networking protocols allows for the development of multiplayer games, where players can interact in real-time, enhancing the gaming experience.
In addition, JavaScript can interface with backend services using RESTful APIs or GraphQL. This integration allows web applications to retrieve and manipulate data efficiently, enabling dynamic content delivery based on user interactions.


== Real-world Examples ==
== Real-world Examples ==


=== Major Websites and Applications ===
Various applications across domains utilize JavaScript to create engaging and interactive user experiences. One prominent example is single-page applications (SPAs), which rely heavily on JavaScript frameworks such as React or Angular. These applications function by dynamically updating the user interface without requiring a complete page reload. This leads to faster interactions and improved performance.
JavaScript plays a critical role in the functionality of major websites and applications. Platforms such as Google Maps, Facebook, and Twitter leverage JavaScript's capabilities for dynamic data rendering and real-time interaction. Google Maps utilizes JavaScript to handle map rendering, user location tracking, and facilitating smooth transitions as users interact with the interface.


On social media platforms like Facebook and Twitter, JavaScript is used to manage user interactivity, update feeds in real-time, and fetch data without requiring a full page reload, substantially improving performance and user experience.
Another example is e-commerce platforms, which utilize JavaScript for features such as shopping carts, user authentication, and product searches. By leveraging JavaScript's capabilities, developers can ensure a smooth checkout process, thereby enhancing user satisfaction.


=== Development Tools ===
JavaScript is also a cornerstone in game development, particularly for browser-based games. Technologies such as HTML5 and the Canvas API allow for the creation of visually appealing and interactive games directly playable in web browsers, demonstrating the versatility of JavaScript.
The JavaScript ecosystem is supported by an extensive range of tools and libraries that enhance development processes. Build tools such as Webpack and Gulp streamline asset management and optimize performance by bundling JavaScript files, minifying code, and preprocessing styles. In addition, package managers like npm (Node Package Manager) facilitate the efficient management of project dependencies, allowing developers to easily integrate and update libraries and frameworks.


Furthermore, various integrated development environments (IDEs), such as Visual Studio Code and WebStorm, provide advanced features specifically tailored for JavaScript development, including syntax highlighting, error checking, and debugging tools.
=== Mobile and Desktop Applications ===


== Criticism and Limitations ==
In addition to web applications, JavaScript can also be utilized in mobile and desktop application development. Frameworks such as React Native and Electron enable developers to build cross-platform applications using JavaScript, HTML, and CSS. React Native allows for the creation of native mobile applications for iOS and Android, while Electron enables the development of cross-platform desktop applications with web technologies.


=== Performance Issues ===
These frameworks have led to the rise of numerous popular applications, including Visual Studio Code, Slack, and Discord, allowing developers to use their existing knowledge of web technologies to enter new development domains.
While JavaScript has evolved significantly since its inception, it still faces performance challenges, particularly in computationally intensive tasks such as large-scale data processing and graphics rendering. As a single-threaded language, JavaScript is ill-suited for scenarios requiring parallel processing. This limitation can lead to performance bottlenecks that may negatively impact user experience on web applications.


To mitigate this, developers may use Web Workers, which enable the execution of JavaScript code in the background, allowing for concurrent processing without blocking the main thread. However, the complexity of managing Web Workers adds a layer of difficulty to application design.
== Criticism and Limitations ==


=== Security Concerns ===
Despite its widespread adoption, JavaScript is not without its criticisms. One of the primary concerns revolves around its security vulnerabilities. Cross-Site Scripting (XSS) attacks exploit JavaScript's ability to manipulate web content, allowing malicious users to inject harmful scripts into applications. Developers must implement strict security practices and utilize tools for sanitizing inputs to mitigate these risks.
JavaScript's client-side nature raises various security concerns, particularly regarding code injection attacks such as Cross-Site Scripting (XSS) and Cross-Site Request Forgery (CSRF). Malicious actors can exploit vulnerabilities in web applications to execute unauthorized scripts or perform actions on behalf of users without their consent.


To counteract these threats, developers must employ a range of security best practices, such as sanitizing user input, using Content Security Policy headers, and applying regular security audits to identify and mitigate potential vulnerabilities in their applications.
Another limitation is JavaScript's dynamic typing, which can lead to runtime errors that are not discovered until the code is executed. This lack of compile-time checking can create challenges for maintaining large codebases, where bugs may surface later in the development cycle.


=== Browser Inconsistencies ===
Additionally, JavaScript has been criticized for its inconsistent behavior across different web browsers. Although modern standards and libraries aim to provide uniform experiences, developers still face discrepancies in how JavaScript is interpreted, necessitating extensive testing across different platforms to ensure compatibility.
Despite the efforts toward standardization through ECMAScript, discrepancies in JavaScript implementations across different browsers can lead to compatibility issues. While modern browsers strive for uniform compliance with the ECMAScript standards, variations may still arise, particularly with the introduction of new features or experimental APIs.


To address these compatibility issues, developers often resort to using libraries such as Babel, which transpile modern JavaScript code into backward-compatible versions that can run on older browsers. Additionally, testing frameworks enable developers to check code behavior across various browsers to ensure consistent functionality.
JavaScript's performance can also be a topic of debate. Although engines like V8 have optimized JavaScript execution, performance can degrade when using poorly structured code or when handling large computations, leading to slow execution times and a suboptimal user experience.


== See also ==
== See also ==
* [[JavaScript frameworks]]
* [[ECMAScript]]
* [[ECMAScript]]
* [[Node.js]]
* [[Node.js]]
* [[React (JavaScript library)]]
* [[Document Object Model]]
* [[Vue.js]]
* [[AJAX]]
* [[Angular (web framework)]]
* [[Asynchronous programming]]


== References ==
== References ==
* [https://www.ecma-international.org/publications-and-standards/standards/ecma-262/ ECMAScript Language Specification]
* [https://developer.mozilla.org/en-US/docs/Web/JavaScript MDN Web Docs - JavaScript]
* [https://developer.mozilla.org/en-US/docs/Web/JavaScript MDN Web Docs: JavaScript]
* [https://www.ecma-international.org/publications/standards/Ecma-262.htm ECMA-262 - ECMAScript Language Specification]
* [https://nodejs.org/ Node.js Official Site]
* [https://nodejs.org/ Node.js Official Website]
* [https://reactjs.org/ React Official Site]
* [https://www.javascript.com/ JavaScript Official Website]
* [https://vuejs.org/ Vue.js Official Site]
* [https://www.w3schools.com/js/ W3Schools - JavaScript Tutorial]
* [https://angular.io/ Angular Official Site]


[[Category:Programming languages]]
[[Category:Programming languages]]
[[Category:Web development]]
[[Category:Web technologies]]
[[Category:Scripting languages]]
[[Category:Software development]]

Latest revision as of 17:42, 6 July 2025

JavaScript is a high-level, dynamic, untyped, and interpreted programming language that is primarily used to enhance the interaction and functionality of web pages. Originally developed by Brendan Eich at Netscape as a client-side scripting language, JavaScript has evolved to serve a variety of programming paradigms, including event-driven, functional, and imperative programming. It plays a crucial role in the modern web development landscape, making it an indispensable tool for developers worldwide.

History

JavaScript was created in 1995 when Brendan Eich was employed by Netscape Communications Corporation. The initial idea was to enable client-side scripts to make web pages more interactive and to allow users to engage with content without needing to reload the entire page. Eich developed the first version of the language in just ten days, and it was first released under the name Mocha, later renamed to LiveScript, and finally called JavaScript.

In 1996, JavaScript was standardized by ECMA International, an organization responsible for standardizing the syntax and semantics of the language. The first edition of the standard, known as ECMAScript 1, was published in June 1997. Subsequent versions, such as ECMAScript 2 (released in 1998) and ECMAScript 3 (released in 1999), introduced improvements and new features, including regular expressions, try/catch for exception handling, and better string manipulation capabilities.

The explosion of web development in the early 2000s led to the emergence of frameworks and libraries designed to simplify JavaScript's use, such as jQuery. In 2009, ECMAScript 5 was released, introducing new features like JSON support and stricter error handling. This marked a pivotal moment in the language's history, ensuring its relevance in modern application development.

In 2015, ECMAScript 6 (ES6), also known as ECMAScript 2015, was released, which brought significant enhancements to the language, including syntax improvements for classes and modules, arrow functions, template literals, and promises. This version was integral to the evolution of JavaScript and paved the way for a new generation of frameworks such as Angular, React, and Vue.js.

Subsequent versions of ECMAScript have continued to build upon these advancements, with annual updates that introduce new functionality, such as async/await in 2017 (ES8) and optional chaining in 2020 (ES11).

Architecture and Design

JavaScript is a multi-paradigm language that supports event-driven, functional, and imperative programming styles. Its design allows for the creation of dynamic and interactive web applications. The core architecture of JavaScript consists of the following components:

Execution Context

JavaScript operates within an execution context, which creates the environment in which the code is executed. There are two primary types of execution contexts: global and function. The global execution context is created when the JavaScript file is first run, while the function execution context is created whenever a function is invoked. Each execution context contains a variable object, a scope chain, and a value of the 'this' keyword that refers to the context in which the function was called.

Variable Scope

JavaScript uses function scope and block scope to control variable access and lifespan. Variables declared with the 'var' keyword are scoped to the function they were declared in, while variables declared with 'let' and 'const' have block scope, meaning they are only accessible within a specific block of code. This distinction is critical for preventing variable name clashes and other logical errors in code.

Prototypal Inheritance

Unlike classical inheritance found in languages such as Java or C++, JavaScript employs prototypal inheritance. This means that objects can inherit properties and methods from other objects, allowing for more flexible object-oriented programming. Each object has a prototype, and when a property or method is not found on the object itself, JavaScript checks the prototype chain to find it.

Event Loop

The JavaScript runtime operates on a single-threaded event loop, which allows asynchronous programming. When long-running operations, such as network requests or timers, are processed, JavaScript can continue executing other code in the call stack. This non-blocking architecture is critical for creating responsive applications, especially in web environments where performance is paramount.

Implementation

JavaScript's implementation is most commonly found in web browsers, where it operates within a host environment. Major web browsers, including Google Chrome, Mozilla Firefox, Safari, and Microsoft Edge, incorporate JavaScript engines such as V8 (Chrome), SpiderMonkey (Firefox), and JavaScriptCore (Safari). Each engine optimizes the interpretation and execution of JavaScript code to improve performance and responsiveness.

JavaScript in Web Browsers

Within a web browser, JavaScript enables developers to modify Document Object Model (DOM) elements dynamically, manage user interactions, and communicate with remote servers through AJAX (Asynchronous JavaScript and XML). This capability allows for the creation of rich, interactive web applications that enhance user experience.

A common use of JavaScript is in form validation. By using JavaScript to validate user input before submitting data to a server, developers can provide instant feedback and prevent unnecessary round trips to the server. This approach significantly enhances the usability of web applications.

Server-side JavaScript

While JavaScript originated as a client-side scripting language, it has gained traction for server-side programming thanks to environments such as Node.js. Released in 2009, Node.js allows developers to use JavaScript to build scalable network applications on the server side. This has opened up new opportunities for using JavaScript beyond the browser, enabling the development of full-stack applications where both the client and the server use the same programming language.

Node.js employs non-blocking I/O operations, making it particularly suitable for creating applications that require high concurrency. This architecture has led to the popularity of real-time applications such as chat services and collaborative tools.

Integration with Other Technologies

JavaScript often interacts with other web technologies like HTML and CSS to create a seamless user experience. Various libraries and frameworks, such as React, Angular, and Vue.js, build upon JavaScript's capabilities to streamline development processes. These tools enhance productivity by providing pre-built components, data binding, and advanced state management techniques.

In addition, JavaScript can interface with backend services using RESTful APIs or GraphQL. This integration allows web applications to retrieve and manipulate data efficiently, enabling dynamic content delivery based on user interactions.

Real-world Examples

Various applications across domains utilize JavaScript to create engaging and interactive user experiences. One prominent example is single-page applications (SPAs), which rely heavily on JavaScript frameworks such as React or Angular. These applications function by dynamically updating the user interface without requiring a complete page reload. This leads to faster interactions and improved performance.

Another example is e-commerce platforms, which utilize JavaScript for features such as shopping carts, user authentication, and product searches. By leveraging JavaScript's capabilities, developers can ensure a smooth checkout process, thereby enhancing user satisfaction.

JavaScript is also a cornerstone in game development, particularly for browser-based games. Technologies such as HTML5 and the Canvas API allow for the creation of visually appealing and interactive games directly playable in web browsers, demonstrating the versatility of JavaScript.

Mobile and Desktop Applications

In addition to web applications, JavaScript can also be utilized in mobile and desktop application development. Frameworks such as React Native and Electron enable developers to build cross-platform applications using JavaScript, HTML, and CSS. React Native allows for the creation of native mobile applications for iOS and Android, while Electron enables the development of cross-platform desktop applications with web technologies.

These frameworks have led to the rise of numerous popular applications, including Visual Studio Code, Slack, and Discord, allowing developers to use their existing knowledge of web technologies to enter new development domains.

Criticism and Limitations

Despite its widespread adoption, JavaScript is not without its criticisms. One of the primary concerns revolves around its security vulnerabilities. Cross-Site Scripting (XSS) attacks exploit JavaScript's ability to manipulate web content, allowing malicious users to inject harmful scripts into applications. Developers must implement strict security practices and utilize tools for sanitizing inputs to mitigate these risks.

Another limitation is JavaScript's dynamic typing, which can lead to runtime errors that are not discovered until the code is executed. This lack of compile-time checking can create challenges for maintaining large codebases, where bugs may surface later in the development cycle.

Additionally, JavaScript has been criticized for its inconsistent behavior across different web browsers. Although modern standards and libraries aim to provide uniform experiences, developers still face discrepancies in how JavaScript is interpreted, necessitating extensive testing across different platforms to ensure compatibility.

JavaScript's performance can also be a topic of debate. Although engines like V8 have optimized JavaScript execution, performance can degrade when using poorly structured code or when handling large computations, leading to slow execution times and a suboptimal user experience.

See also

References