zzangisdaeho
Results
1
comments of
zzangisdaeho
function increaseAndPrint(n) { return new Promise((resolve, reject) => { setTimeout(() => { const value = n + 1; if (value === 5) { const error = new Error(); error.name =...