约 26,800,000 个结果
在新选项卡中打开链接
  1. JavaScript Tutorial

    Syntax – explain the JavaScript syntax, including whitespace, statements, identifiers, keywords, expressions, and comments. Variables – show you how to declare variables.

  2. JavaScript Syntax - W3Schools

    W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

  3. Arrow function expressions - JavaScript | MDN

    2026年2月21日 · An arrow function expression is a compact alternative to a traditional function expression, with some semantic differences and deliberate limitations in usage:

  4. Nullish coalescing operator (??) - JavaScript | MDN

    2025年8月26日 · The nullish coalescing (??) operator is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side …

  5. Async and Await in JavaScript - GeeksforGeeks

    2026年1月19日 · Async/Await in JavaScript allows you to write asynchronous code in a clean, synchronous-like manner, making it easier to read, understand, and maintain while working with …

  6. JavaScript Examples - W3Schools

    JavaScript Statements JavaScript statements are commands to the browser JavaScript code is a sequence of statements JavaScript statements are separated with semicolon Multiple statement on …

  7. syntax - What's the meaning of "=>" (a fat arrow formed from equal …

    2017年6月20日 · 1 JavaScript arrow functions are roughly the equivalent of lambda functions in python or blocks in Ruby. These are anonymous functions with their own special syntax and operate in the …

  8. Array.prototype.map () - JavaScript | MDN - MDN Web Docs

    2025年7月20日 · The map() method of Array instances creates a new array populated with the results of calling a provided function on every element in the calling array.

  9. Functions in JavaScript - GeeksforGeeks

    2026年1月22日 · Functions in JavaScript are reusable blocks of code designed to perform specific tasks. They allow you to organize, reuse, and modularize code. It can take inputs, perform actions, …

  10. 6. JavaScript fundamentals - MDN Web Docs

    JavaScript is a huge topic, with so many different features, styles, and techniques to learn, and so many APIs and tools built on top of it. This module focuses mostly on the essentials of the core language, …