Month: March 2024

JavaScript

A brief analysis of ArrayList

by emanjusaka from   https://www.emanjusaka.top/2023/12/java-arrayList  What can you do if the flowers on the other side bloom?This article welcomes sharing and aggregation. Please leave the original address […]

JavaScript

Simplified version of handwritten promise ideas

Constructorconstructor(executor) resolveand rejectfunction then(onFulfilled, onRejected) Chained calls and asynchronous execution Error handling catch(onRejected) This SimplePromiseclass implements thenand catch, but does not implement Promiseall the functions of , such as Promise.all, Promise.race, Promise.resolve, Promise.rejectand other […]