I am ne zha / Jeskson

Results 398 issues of I am ne zha / Jeskson

![image](https://user-images.githubusercontent.com/59645426/177935788-c5dbe101-5bef-4e35-b35c-62eea09c24ac.png) ![image](https://user-images.githubusercontent.com/59645426/177935949-751d2d6a-1d0e-40ee-b9f6-e0fe719c8eaf.png) ![image](https://user-images.githubusercontent.com/59645426/177936119-656b12c2-4baf-48fe-ac98-b392c595454f.png) ![image](https://user-images.githubusercontent.com/59645426/177936225-63df8105-8f37-499e-be95-8e4be9b364e9.png) ![image](https://user-images.githubusercontent.com/59645426/177936411-859e2b24-f946-4d6c-9ac6-0b95a4f00fc7.png) ![image](https://user-images.githubusercontent.com/59645426/177936599-b66f5b06-c4f4-4da1-b931-88e769b29b4a.png)

![image](https://user-images.githubusercontent.com/59645426/177704860-2051f1d2-c7bf-4d95-8663-d845865faca4.png) ![image](https://user-images.githubusercontent.com/59645426/177704885-935a7fd9-13b1-4481-945f-5153ccdbb5a6.png)

![image](https://user-images.githubusercontent.com/59645426/177266502-f84ad4e2-e889-4420-a5b3-5f5b68d6db54.png)

![image](https://user-images.githubusercontent.com/59645426/176992976-d5d95ab4-1e92-4057-a6a1-7c0458f04a43.png)

![generate](https://user-images.githubusercontent.com/59645426/176900395-0b6ad5c7-26e1-48a5-8ead-3d50757c1633.jpg)

## AsciiDoc - [bitcoinbook](https://github.com/bitcoinbook/bitcoinbook) Mastering Bitcoin 2nd Edition - Programming the Open Blockchain ## Lua - [http_study](https://github.com/chronolaw/http_study) follow me to study http ## C++ - [ModSecurity](https://github.com/SpiderLabs/ModSecurity) ModSecurity is an open...

- [workflow](https://github.com/luoxue-victor/workflow) 一个工作流平台 - [zignis-plugin-read](https://github.com/vipzhicheng/zignis-plugin-read) A command line tool to help getting main part of a page - [impress.js](https://github.com/impress/impress.js) It's a presentation framework based on the power of CSS3 transforms...

## Rust - [exa](https://github.com/ogham/exa) A modern replacement for ‘ls’. - [swc](https://github.com/swc-project/swc) Rust-based platform for the Web - [tools](https://github.com/rome/tools) The Rome Toolchain. A linter, compiler, bundler, and more for JavaScript, TypeScript,...

需要回调,因为 javascript 是一种事件驱动语言。这意味着在侦听其他事件时,javascript 将继续执行而不是等待响应。让我们以第一个函数调用 API 调用(由 setTimeout 模拟)和记录消息的下一个函数为例。 ```js function firstFunction() { // Simulate a code delay setTimeout(function () { console.log("First function called"); }, 1000); } function secondFunction() { console.log("Second...

深入理解JS核心技术

回调函数是作为参数传递给另一个函数的函数。该函数在外部函数内部被调用以完成一个动作。我们举一个简单的例子来说明如何使用回调函数 ```js function callbackFunction(name) { console.log("Hello " + name); } function outerFunction(callback) { let name = prompt("Please enter your name."); callback(name); } outerFunction(callbackFunction); ```

深入理解JS核心技术