stanlogin

↗ HN profile [ 49.9 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. I mean, no need to write "async/await".

  2. So that this code: ``` let a = await aFuncThatReturnPromise(); console.log(a) ``` becomes the following and does the same thing: ``` let a = aFuncThatReturnPromise(); console.log(a) ``` For sometimes I do not want wait,…

  3. Website: codegrepper.com Recently when I search programing keywords, that website often get very hight position on the search result page. But it has very low quality. The pages on the website were crawled from…