Async await in javascript

async,tipjs,function

const fs = require('fs')
async function readFile() {
  try {    
    var f1 = await readFileWithPromise('/etc/passwd')
    console.log(f1.toString())
    var f2 = await readFileWithPromise('/etc/profile')
    console.log(f2.toString())
  } catch (err) {
    console.log(err)
  }
}

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

Callback in javascript

Callback in javascript

Object.keys và Object.getOwnPropertyNames

Object.keys và Object.getOwnPropertyNames

How to reverse an Array?

Reversing an array in JS is really simple with the standard array method. Like below

Đếm số phần tử trong mảng JavaScript

Đếm số lần xuất hiện của các phần tử trong mảng JavaScript

try/catch es10

An update for developer convience allows the use of try/catch without an explicit e Error reference in the catch call.