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 🏷️
Line 1: Line 1:
'''JavaScript''' is a high-level, dynamic, untyped, and interpreted programming language that is widely used to make web pages interactive and dynamic. It has become one of the core technologies of the World Wide Web, alongside HTML and CSS. JavaScript enables the development of advanced features on web pages, including form validation, dynamic content updates, animations, and interactive map functionality. Its versatility allows it to be used in various environments beyond the browser, such as servers and databases.
'''JavaScript''' is a high-level, dynamic, untyped, and interpreted programming language that is widely used for client-side web development. As a core technology of the World Wide Web, alongside HTML and CSS, JavaScript enables interactive web pages and is an essential part of web applications. It has become one of the most popular programming languages in the world, used for both front-end and back-end development through various frameworks and runtimes.


== History ==
== History ==


=== Origins ===
JavaScript was created in May 1995 by Brendan Eich while he was working at Netscape Communications Corporation. Initially named "Mocha," the language was later renamed to "LiveScript" before finally being branded as "JavaScript." This renaming was part of an advertising strategy that capitalized on the growing popularity of the Java programming language, despite the two languages having different designs and purposes.
JavaScript was created in May 1995 by Brendan Eich while he was at Netscape Communications Corporation. Originally named Mocha, it was later renamed to LiveScript before finally being branded as JavaScript. The name was partly a marketing strategy to capitalize on the popularity of Java, despite the two languages being fundamentally different in design and functionality. The first version was officially released in Netscape Navigator 2.0.


=== Standardization ===
In December 1995, the first official version, known as JavaScript 1.0, was released with Netscape Navigator 3.0. Its syntax had elements from both Java and Scheme, making it more accessible for web developers. As web technologies aimed for standardization, JavaScript was submitted to the European Computer Manufacturers Association (ECMA) in 1996.
As the use of JavaScript grew, it became apparent that a standard was necessary to ensure interoperability between different web browsers. In 1997, the European Computer Manufacturers Association (ECMA) took on the task of standardizing the scripting language, leading to the creation of ECMAScript (ECMA-262). The first edition of ECMAScript was published in June 1997, and the specifications have been updated regularly, with significant revisions such as ES5 in 2009, ES6 (also known as ECMAScript 2015) in 2015, and subsequent annual updates that continued to enhance the language.


=== Modern Developments ===
This led to the creation of the ECMA-262 standard, which formalized the language specifications, allowing for greater compatibility across different web browsers. The first edition of ECMAScript, as the standardized version of JavaScript is known, was published in June 1997. Since then, the standard has undergone multiple revisions, with new features being periodically introduced.
The language has seen stunning evolution over the years. With the advent of frameworks such as Angular, React, and Vue.js in the 2010s, JavaScript gained even more popularity as a versatile language suitable for building complex single-page applications and full-fledged web platforms. The introduction of Node.js in 2009 allowed developers to use JavaScript for server-side programming, further expanding its ecosystem.


== Language Design ==
== Specifications and Language Features ==


=== Syntax and Structure ===
JavaScript is defined by the ECMAScript specifications, with the most current version at the time of writing being ECMAScript 2022. The language features include:
JavaScript's syntax resembles that of the C programming language, which makes it accessible to many programmers. It employs a set of keywords, operators, and structure similar to C, C++, and Java. JavaScript uses curly braces to define code blocks and semicolons to end statements. It supports object-oriented, imperative, and functional programming paradigms. Variables can be declared using keywords such as var, let, and const, influencing their scope and mutability.


=== Functions ===
=== Syntax and Data Types ===
In JavaScript, functions are first-class objects, meaning they can be assigned to variables, passed as arguments, and returned from other functions. This feature supports the use of higher-order functions and allows for concise, expressive code. JavaScript supports both traditional function declarations and anonymous functions, promoting flexibility in coding styles. Additionally, the introduction of arrow functions in ES6 provided a more concise syntax for function expressions, allowing for lexical scoping of the `this` keyword.


=== Prototypal Inheritance ===
JavaScript utilizes a C-like syntax that is both expressive and flexible. It supports several data types including primitive types such as numbers, strings, booleans, null, undefined, and symbols. Additionally, it offers complex data types such as objects and arrays.
JavaScript employs prototypal inheritance, differing from class-based inheritance found in many object-oriented languages. Instead of being based around classes, objects in JavaScript can directly inherit from other objects. This allows for more dynamic and flexible interactions between objects and facilitates code reuse. The `Object.create()` method and the prototype property play essential roles in this system, enabling developers to establish prototype chains.


=== Asynchronous Programming and Promises ===
The flexibility of JavaScript allows for dynamic typing, enabling variables to change types during execution. This can lead to greater coding efficiency but also introduces potential pitfalls such as type coercion, where an operation implicates converting values to different types.
Handling asynchronous operations is crucial in web development, as many tasks, such as network requests or file operations, can take an indeterminate amount of time. JavaScript uses several mechanisms to manage asynchronous programming, including callbacks, Promises, and the async/await syntax introduced in ES2017. Promises represent an eventual completion (or failure) of an asynchronous operation and its resulting value, allowing for more readable and maintainable code when dealing with asynchronous tasks.
Β 
=== Object-Oriented Programming ===
Β 
JavaScript supports object-oriented programming through prototype-based inheritance, which differs from the classical inheritance model found in many other programming languages. Objects in JavaScript can inherit properties and methods from other objects, leading to modular and reusable code.
Β 
This model allows developers to create complex data structures and behaviors by extending existing objects. In addition to prototypes, JavaScript also introduced the class syntax in ECMAScript 2015 (also known as ES6), which provides a more familiar structure for developers coming from class-based languages.
Β 
=== Asynchronous Programming ===
Β 
A significant aspect of JavaScript is its ability to manage asynchronous operations through callbacks, promises, and the async/await syntax introduced in ES2017. Asynchronous programming is crucial for operations like network requests and file handling, allowing complex web applications to remain responsive.
Β 
By using these techniques, developers can write code that executes asynchronously, improving performance and user experience on web applications. This focus on asynchronous operations is particularly important given JavaScript's single-threaded nature, as it prevents the application from becoming unresponsive during prolonged tasks.


== Implementation and Applications ==
== Implementation and Applications ==
JavaScript is primarily associated with web development but has found utility in other domains as well. Its implementation has extended beyond traditional client-side scripting to encompass server-side programming, mobile app development, and even desktop applications.


=== Web Development ===
=== Web Development ===
JavaScript is primarily used for enhancing the interactivity and functionality of web pages. It enables developers to manipulate the Document Object Model (DOM), allowing for real-time updates, rendering of new content, and styling modifications on the fly. JavaScript frameworks such as jQuery simplified DOM manipulation, while modern frameworks like React allow for the building of reusable components, representing a shift towards component-based architecture in web development.


=== Server-Side Programming ===
In web development, JavaScript enhances interactivity and dynamic content on websites. Through the Document Object Model (DOM), developers can manipulate HTML and CSS in real-time, responding to user interactions such as clicks, form submissions, and navigation. This creates a rich, interactive user experience that is essential for modern web applications.
With the emergence of Node.js, JavaScript has also established a strong foothold in server-side programming. Node.js allows developers to build scalable network applications using a non-blocking, event-driven architecture. This makes JavaScript suitable for real-time applications such as chat servers, gaming servers, and collaborative tools. The rich ecosystem of npm (Node Package Manager) provides access to thousands of libraries and packages, further enhancing the development experience.


=== Mobile Application Development ===
Frameworks and libraries such as React, Angular, and Vue.js have emerged to streamline the development process, offering reusable components and state management capabilities. These tools have significantly increased productivity and fostered the development of Single Page Applications (SPAs), which load a single HTML page and dynamically update content as users interact with the app.
JavaScript's versatility extends to mobile application development. Frameworks like React Native and Ionic empower developers to create cross-platform mobile applications using JavaScript. By utilizing a single codebase, developers can deploy applications on both iOS and Android devices, significantly reducing development time and effort.


=== Game Development ===
=== Server-Side Development ===
The gaming industry has also embraced JavaScript, allowing developers to create browser-based games and assistance in programming game engines. Libraries and frameworks such as Phaser and Babylon.js provide robust tools for 2D and 3D game development, taking advantage of HTML5’s capabilities. JavaScript enables real-time interactions and implementations of game logic while keeping deployment simple through web browsers.


=== Internet of Things (IoT) ===
The advent of Node.js in 2009 marked a significant shift in JavaScript's use cases, allowing the language to be used for server-side development. Node.js leverages the V8 JavaScript engine developed by Google, enabling developers to write scalable network applications using JavaScript.
JavaScript is used in the Internet of Things (IoT), as platforms such as Johnny-Five and Node-RED leverage JavaScript for building hardware and networked devices. The ability to work with various data sources and devices through JavaScript modules allows developers to create innovative solutions using IoT technologies and web interfaces.


== Popular Libraries and Frameworks ==
With Node.js, developers can build back-end services and APIs, facilitating communication between the client-side views and databases. This has encouraged the use of JavaScript throughout the technology stack, promoting a "JavaScript everywhere" paradigm where both client and server components are developed using the same language.


=== React ===
=== Mobile and Desktop Applications ===
React, developed by Facebook, is one of the most prominent JavaScript libraries for building user interfaces. Its component-based architecture allows developers to create self-contained modules that manage their own state, leading to efficient updates and rendering procedures. React's virtual DOM improves performance, facilitating complex user interfaces while maintaining responsiveness.


=== Angular ===
JavaScript's capabilities extend beyond web and server-side applications. Frameworks such as React Native and Electron enable developers to create mobile and desktop applications respectively using JavaScript. React Native focuses on building mobile applications for iOS and Android, providing a native look and feel, while Electron allows for creating cross-platform desktop applications using web technologies.
Angular, developed and maintained by Google, is a platform and framework for building single-page applications. Its extensive features include two-way data binding, dependency injection, and modular development. Angular empowers developers to create large-scale applications with a focus on maintainable code.


=== Vue.js ===
These frameworks have empowered developers to leverage their existing JavaScript skills to create applications across different platforms, thereby expanding the reach of JavaScript in various domains.
Vue.js is an approachable, versatile, and performant JavaScript framework used for building user interfaces. Its core library focuses on the view layer, making it easy to integrate with other libraries or existing projects. Vue’s flexible architecture allows developers to build applications with a progressive approach.


=== jQuery ===
== Real-world Examples ==
While it has seen a decline in usage with the rise of modern frameworks, jQuery played a crucial role in simplifying HTML document traversing, event handling, and animation. It abstracts the differences among browsers, allowing developers to write less code while achieving consistent results.


=== D3.js ===
Numerous high-profile web applications and platforms utilize JavaScript for their functionality, illustrating its broad applicability. Social media sites, content management systems, and e-commerce platforms have integrated JavaScript to enhance user engagement and experience.
D3.js (Data-Driven Documents) is a JavaScript library for producing dynamic, interactive data visualizations in web browsers. It allows for data binding to the DOM and seamless manipulation of data through HTML, SVG, and CSS, transforming data into visually appealing graphics and visual representations.
Β 
=== Interactive Web Applications ===
Β 
Popular platforms such as Facebook, Twitter, and Instagram employ JavaScript to create dynamic user interfaces. These applications utilize JavaScript for features such as real-time notifications, content updates, and interactive elements, which contribute to a seamless user experience.
Β 
=== E-commerce Sites ===
Β 
E-commerce platforms like Amazon and eBay heavily rely on JavaScript to facilitate interactions such as filtering products, updating shopping carts, and processing transactions without requiring full-page reloads. The responsive nature of these applications, powered by JavaScript, helps improve conversion rates and user satisfaction.
Β 
=== Progressive Web Apps ===
Β 
Progressive Web Apps (PWAs) combine the best of web and mobile applications using JavaScript. These applications offer offline capabilities, push notifications, and installation on devices, giving users an experience similar to native apps. Companies such as Twitter and Pinterest have adopted PWAs to enhance their user engagement and performance.


== Criticism and Limitations ==
== Criticism and Limitations ==
Despite its widespread adoption and advantages, JavaScript is not without criticism. Developers and analysts have raised concerns regarding security, optimization, and the complexity of the language.
=== Security Concerns ===
JavaScript's prominence in web development makes it a prime target for various attacks such as Cross-Site Scripting (XSS) and Cross-Site Request Forgery (CSRF). These vulnerabilities can lead to unauthorized access, data theft, and other malicious activities. Consequently, developers must implement comprehensive security practices and utilize libraries and frameworks that offer protection against such threats.


=== Performance Issues ===
=== Performance Issues ===
One criticism of JavaScript relates to performance concerns, especially in comparison to compiled languages such as C or C++. JavaScript’s interpreted nature means it can be slower in executing certain tasks. However, with advancements in Just-In-Time (JIT) compilation provided by modern JavaScript engines like Google’s V8 and Mozilla’s SpiderMonkey, performance improvements have been significant.


=== Security Vulnerabilities ===
JavaScript can lead to performance challenges, particularly in complex applications where inefficient code can cause slow response times. Since JavaScript is interpreted, it may not execute as quickly as compiled languages, although significant improvements have been achieved with Just-In-Time (JIT) compilation in modern JavaScript engines. Developers are thus encouraged to write performant code and optimize resource usage.
Security is a paramount concern in web development, and JavaScript is not immune to risks. Common vulnerabilities associated with JavaScript include cross-site scripting (XSS), where malicious scripts are injected into web pages, and man-in-the-middle (MitM) attacks, where data can be intercepted during transmission. Developers must adopt secure coding practices to mitigate these risks when coding with JavaScript.


=== Browser Inconsistencies ===
=== Complexity and Readability ===
Despite efforts for standardization, different web browsers may still implement JavaScript features inconsistently. This can create challenges for developers targeting a broad audience, as code that functions optimally in one browser may encounter issues in another. Developers often rely on polyfills and feature detection libraries to address these discrepancies.


=== Complexity in Large-Scale Applications ===
The flexibility of JavaScript can be a double-edged sword. While it allows for rapid prototyping and creativity, it also enables the creation of complex and difficult-to-read code. This can pose challenges for maintainability and collaboration, particularly in large teams. Developers are encouraged to follow best practices, adhere to coding standards, and employ modern frameworks that promote structure and readability.
As with any programming language, managing complexity in large-scale applications can be a challenge in JavaScript. The language’s flexibility can lead to inconsistent coding practices, making maintenance and collaboration more difficult. Structured design patterns, type systems, and transpilers like TypeScript have emerged to help mitigate these challenges.


== Future Directions ==
== Future Directions ==


The future of JavaScript appears vibrant, with ongoing enhancements and innovations continuing to redefine its capabilities. As web standards evolve, JavaScript will likely expand to support more robust features and improvements in performance. New patterns like server-side rendering, static site generation, and progressive web apps represent emerging practices that promise to enhance user experience and application capabilities.
Looking ahead, JavaScript is set to continue evolving with the introduction of new features and improvements. The ongoing development of ECMAScript showcases a commitment to enhancing language performance, security, and developer experience. Emerging trends such as WebAssembly and enhanced type systems like TypeScript are poised to shape the future of JavaScript development.
Β 
=== WebAssembly ===


Additionally, the growth of TypeScript, a superset of JavaScript that adds static typing, is influencing how developers approach coding in JavaScript. TypeScript’s ability to catch errors at compile time is improving code quality and providing a better development experience. The JavaScript community is continuously innovating, ensuring that the language remains at the forefront of programming and technology.
WebAssembly (Wasm) is an emerging technology that complements JavaScript, allowing developers to run compiled code in web browsers at near-native speed. This opens up new possibilities for performance-critical applications, such as games and multimedia editors, allowing them to leverage both languages effectively.


== See also ==
=== Type Safety with TypeScript ===
* [[List of JavaScript libraries]]
Β 
* [[JavaScript frameworks]]
TypeScript, a superset of JavaScript, introduces static types to the language, enhancing type safety and improving code maintainability. As developer preferences shift towards more structured and robust code bases, TypeScript is likely to gain further traction, shaping the future of JavaScript development methodologies.
* [[Dynamic programming languages]]
Β 
== See Also ==
* [[ECMAScript]]
* [[ECMAScript]]
* [[Node.js]]
* [[Node.js]]
* [[WebAssembly]]
* [[TypeScript]]
* [[JavaScript frameworks]]


== References ==
== References ==
* [https://www.ecma-international.org/publications-and-standards/standards/ecma-262/ ECMA-262 - ECMAScript Language Specification]
* [https://www.ecma-international.org/publications-and-standards/standards/ecma-262/ ECMA-262 Standard]
* [https://developer.mozilla.org/en-US/docs/Web/JavaScript JS Guide - Mozilla Developer Network]
* [https://nodejs.org/ Node.js Official Website]
* [https://nodejs.org/en/about/ About Node.js]
* [https://www.javascript.com/ JavaScript Official Website]
* [https://reactjs.org/ React - A JavaScript library for building user interfaces]
* [https://www.typescriptlang.org/ TypeScript Official Website]
* [https://angular.io/ Angular - A platform for building mobile and desktop web applications]
* [https://vuejs.org/ Vue.js - The Progressive JavaScript Framework]
* [https://jquery.com/ jQuery - A fast, small, and feature-rich JavaScript library]
* [https://d3js.org/ D3.js - Data-Driven Documents]


[[Category:Programming languages]]
[[Category:Programming languages]]
[[Category:Web development]]
[[Category:Web development]]
[[Category:Computer programming]]
[[Category:Object-oriented programming languages]]

Revision as of 17:17, 6 July 2025

JavaScript is a high-level, dynamic, untyped, and interpreted programming language that is widely used for client-side web development. As a core technology of the World Wide Web, alongside HTML and CSS, JavaScript enables interactive web pages and is an essential part of web applications. It has become one of the most popular programming languages in the world, used for both front-end and back-end development through various frameworks and runtimes.

History

JavaScript was created in May 1995 by Brendan Eich while he was working at Netscape Communications Corporation. Initially named "Mocha," the language was later renamed to "LiveScript" before finally being branded as "JavaScript." This renaming was part of an advertising strategy that capitalized on the growing popularity of the Java programming language, despite the two languages having different designs and purposes.

In December 1995, the first official version, known as JavaScript 1.0, was released with Netscape Navigator 3.0. Its syntax had elements from both Java and Scheme, making it more accessible for web developers. As web technologies aimed for standardization, JavaScript was submitted to the European Computer Manufacturers Association (ECMA) in 1996.

This led to the creation of the ECMA-262 standard, which formalized the language specifications, allowing for greater compatibility across different web browsers. The first edition of ECMAScript, as the standardized version of JavaScript is known, was published in June 1997. Since then, the standard has undergone multiple revisions, with new features being periodically introduced.

Specifications and Language Features

JavaScript is defined by the ECMAScript specifications, with the most current version at the time of writing being ECMAScript 2022. The language features include:

Syntax and Data Types

JavaScript utilizes a C-like syntax that is both expressive and flexible. It supports several data types including primitive types such as numbers, strings, booleans, null, undefined, and symbols. Additionally, it offers complex data types such as objects and arrays.

The flexibility of JavaScript allows for dynamic typing, enabling variables to change types during execution. This can lead to greater coding efficiency but also introduces potential pitfalls such as type coercion, where an operation implicates converting values to different types.

Object-Oriented Programming

JavaScript supports object-oriented programming through prototype-based inheritance, which differs from the classical inheritance model found in many other programming languages. Objects in JavaScript can inherit properties and methods from other objects, leading to modular and reusable code.

This model allows developers to create complex data structures and behaviors by extending existing objects. In addition to prototypes, JavaScript also introduced the class syntax in ECMAScript 2015 (also known as ES6), which provides a more familiar structure for developers coming from class-based languages.

Asynchronous Programming

A significant aspect of JavaScript is its ability to manage asynchronous operations through callbacks, promises, and the async/await syntax introduced in ES2017. Asynchronous programming is crucial for operations like network requests and file handling, allowing complex web applications to remain responsive.

By using these techniques, developers can write code that executes asynchronously, improving performance and user experience on web applications. This focus on asynchronous operations is particularly important given JavaScript's single-threaded nature, as it prevents the application from becoming unresponsive during prolonged tasks.

Implementation and Applications

JavaScript is primarily associated with web development but has found utility in other domains as well. Its implementation has extended beyond traditional client-side scripting to encompass server-side programming, mobile app development, and even desktop applications.

Web Development

In web development, JavaScript enhances interactivity and dynamic content on websites. Through the Document Object Model (DOM), developers can manipulate HTML and CSS in real-time, responding to user interactions such as clicks, form submissions, and navigation. This creates a rich, interactive user experience that is essential for modern web applications.

Frameworks and libraries such as React, Angular, and Vue.js have emerged to streamline the development process, offering reusable components and state management capabilities. These tools have significantly increased productivity and fostered the development of Single Page Applications (SPAs), which load a single HTML page and dynamically update content as users interact with the app.

Server-Side Development

The advent of Node.js in 2009 marked a significant shift in JavaScript's use cases, allowing the language to be used for server-side development. Node.js leverages the V8 JavaScript engine developed by Google, enabling developers to write scalable network applications using JavaScript.

With Node.js, developers can build back-end services and APIs, facilitating communication between the client-side views and databases. This has encouraged the use of JavaScript throughout the technology stack, promoting a "JavaScript everywhere" paradigm where both client and server components are developed using the same language.

Mobile and Desktop Applications

JavaScript's capabilities extend beyond web and server-side applications. Frameworks such as React Native and Electron enable developers to create mobile and desktop applications respectively using JavaScript. React Native focuses on building mobile applications for iOS and Android, providing a native look and feel, while Electron allows for creating cross-platform desktop applications using web technologies.

These frameworks have empowered developers to leverage their existing JavaScript skills to create applications across different platforms, thereby expanding the reach of JavaScript in various domains.

Real-world Examples

Numerous high-profile web applications and platforms utilize JavaScript for their functionality, illustrating its broad applicability. Social media sites, content management systems, and e-commerce platforms have integrated JavaScript to enhance user engagement and experience.

Interactive Web Applications

Popular platforms such as Facebook, Twitter, and Instagram employ JavaScript to create dynamic user interfaces. These applications utilize JavaScript for features such as real-time notifications, content updates, and interactive elements, which contribute to a seamless user experience.

E-commerce Sites

E-commerce platforms like Amazon and eBay heavily rely on JavaScript to facilitate interactions such as filtering products, updating shopping carts, and processing transactions without requiring full-page reloads. The responsive nature of these applications, powered by JavaScript, helps improve conversion rates and user satisfaction.

Progressive Web Apps

Progressive Web Apps (PWAs) combine the best of web and mobile applications using JavaScript. These applications offer offline capabilities, push notifications, and installation on devices, giving users an experience similar to native apps. Companies such as Twitter and Pinterest have adopted PWAs to enhance their user engagement and performance.

Criticism and Limitations

Despite its widespread adoption and advantages, JavaScript is not without criticism. Developers and analysts have raised concerns regarding security, optimization, and the complexity of the language.

Security Concerns

JavaScript's prominence in web development makes it a prime target for various attacks such as Cross-Site Scripting (XSS) and Cross-Site Request Forgery (CSRF). These vulnerabilities can lead to unauthorized access, data theft, and other malicious activities. Consequently, developers must implement comprehensive security practices and utilize libraries and frameworks that offer protection against such threats.

Performance Issues

JavaScript can lead to performance challenges, particularly in complex applications where inefficient code can cause slow response times. Since JavaScript is interpreted, it may not execute as quickly as compiled languages, although significant improvements have been achieved with Just-In-Time (JIT) compilation in modern JavaScript engines. Developers are thus encouraged to write performant code and optimize resource usage.

Complexity and Readability

The flexibility of JavaScript can be a double-edged sword. While it allows for rapid prototyping and creativity, it also enables the creation of complex and difficult-to-read code. This can pose challenges for maintainability and collaboration, particularly in large teams. Developers are encouraged to follow best practices, adhere to coding standards, and employ modern frameworks that promote structure and readability.

Future Directions

Looking ahead, JavaScript is set to continue evolving with the introduction of new features and improvements. The ongoing development of ECMAScript showcases a commitment to enhancing language performance, security, and developer experience. Emerging trends such as WebAssembly and enhanced type systems like TypeScript are poised to shape the future of JavaScript development.

WebAssembly

WebAssembly (Wasm) is an emerging technology that complements JavaScript, allowing developers to run compiled code in web browsers at near-native speed. This opens up new possibilities for performance-critical applications, such as games and multimedia editors, allowing them to leverage both languages effectively.

Type Safety with TypeScript

TypeScript, a superset of JavaScript, introduces static types to the language, enhancing type safety and improving code maintainability. As developer preferences shift towards more structured and robust code bases, TypeScript is likely to gain further traction, shaping the future of JavaScript development methodologies.

See Also

References