欢迎访问 JavaScript 开发示例页面!以下是一些常见场景的代码示例和学习资源:

📌 基础语法示例

// 1. 变量声明
let message = "Hello, World!";
console.log(message); // 输出: Hello, World!

// 2. 函数定义
function add(a, b) {
  return a + b;
}

// 3. 数组操作
const fruits = ["苹果", "香蕉", "橙子"];
fruits.forEach(fruit => console.log(fruit));

📦 常用框架/库示例

  • Node.js 👉 点击查看 Node.js 示例
    const http = require('http');
    http.createServer((req, res) => {
      res.writeHead(200, {'Content-Type': 'text/html'});
      res.end('Hello Node.js!');
    }).listen(3000);
    
  • React.js 👉 点击查看 React 示例
    function HelloWorld() {
      return <h1>你好,React!</h1>;
    }
    
  • Vue.js 👉 点击查看 Vue 示例
    <template>
      <div>{{ greeting }}</div>
    </template>
    <script>
      export default {
        data() {
          return { greeting: "Vue 开发示例" };
        }
      };
    </script>
    

🔧 实用工具示例

  • 使用 Lodash 简化数组处理:
    const _ = require('lodash');
    const result = _.filter([1, 2, 3], n => n % 2 === 0);
    console.log(result); // 输出: [2]
    
  • 异步操作示例:点击查看 async/await 使用指南
    async function fetchData() {
      const response = await fetch('https://api.example.com/data');
      return await response.json();
    }
    

📚 扩展阅读

JavaScript
Node_JS
React_JS