JavaScript
JavaScript often abbreviated as JS, is a programming language and core technology of the World Wide Web, alongside HTML and CSS. Ninety-nine percent of websites use JavaScript on the client side for webpage behavior.[1]
Web browsers have a dedicated JavaScript engine that executes the client code. These engines are also utilized in some servers and a variety of apps. The most popular runtime system for non-browser usage is Node.js.[1]
JavaScript is a high-level, often just-in-time–compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM).[1]
- JavaScript [EN] @ Wikipedia
- JavaScript [DE] @ Wikipedia
Documentation
- JavaScript Style Guide [EN] @ Google
Further Information
- JavaScript Hero - The tutorial with interactive exercises [EN]
- The Modern JavaScript Tutorial - How it's done now. From the basics to advanced topics with simple, but detailed explanations [EN]
Additional Resources
5 pages found:
Examples
1 pages found:
Hints
- Show a macOS notification
const app = Application.currentApplication();
app.includeStandardAdditions = true;
app.displayNotification('Timestamp: 2020-02-02 02:02:02 UTC.', {
withTitle: 'Backup',
subtitle: 'Process has finished!'
})
References
- ↑ 1.0 1.1 1.2 Wikipedia contributors. "JavaScript." Wikipedia. https://en.wikipedia.org/wiki/JavaScript (accessed 21.05.2025)