javascript

JavaScript (), often abbreviated as JS, is a programming language and core technology of the World Wide Web, alongside HTML and CSS. As of 2023, 98.7% of websites use JavaScript on the client side for webpage behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.
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).
The ECMAScript standard does not include any input/output (I/O), such as networking, storage, or graphics facilities. In practice, the web browser or other runtime system provides JavaScript APIs for I/O.
JavaScript engines were originally used only in web browsers, but are now core components of some servers and a variety of applications. The most popular runtime system for this usage is Node.js.
Although Java and JavaScript are similar in name, syntax, and respective standard libraries, the two languages are distinct and differ greatly in design.

View More On Wikipedia.org
  1. phuonganhh

    Các bước thành thạo ngôn ngữ lập trình JavaScript

    Các bước thành thao ngôn ngữ lập trình Javascript bao gồm: Nắm rõ khái niệm và các kiến thức cơ bản, Client-side, Server-side Tìm hiểu về cú pháp Học về Document Opject Model (viết tắt là DOM): là cách biểu diễn và tương tác của trang web Thực hành qua các dự án nhỏ: ví dụ như tạo các ứng dụng...
  2. phuonganhh

    Hướng dẫn học JavaScript

    Trong 10 năm trở lại đây, JavaScript nổi lên bởi tính năng gõ động, hướng đối tượng dựa trên nguyên mẫu và các chức năng hạng nhất. Chính vì điều đó mà JavaScript được ứng dụng phổ biến hiện nay, đặc biệt trong lĩnh vực phát triển các trang web và ứng dụng web Trước khi tìm hiểu xem làm sao để...
Top