Await in a for loop

function,es6,async,tipjs

How to Await in a for loop

const forLoop = async _ => {
  console.log('Start')

  for (let index = 0; index < fruitsToGet.length; index++) {
    const fruit = fruitsToGet[index]
    const numFruit = await getNumFruit(fruit)
    console.log(numFruit)
  }

  console.log('End')
}
//Use:
'Start'
'Apple: 27'
'Grape: 0'
'Pear: 14'
'End'

Có thể bạn đã miss một số snippets code

Lấy ngày hiện tại trong javascript

Lấy ngày hiện tại trong javascript

encode/decode base64 with JS

Encoding to base64 is done with the btoa command

Copy a string to the clipboard

Copy a string to the clipboard. Only works as a result of user action (i.e. inside a click event listener).

Sử dụng Promise.all với fetch

Sử dụng Promise.all hiệu quả sẽ làm cho hiệu suất của code chúng ta tăng lên đáng kể. Và mã sau đây giúp các bạn có thể get được nhiều data mà không ảnh hưởng tới performance.

group by property javascript use reduce

group by property javascript use reduce