Fungsi JavaScript Asdyn

const asyncFunction = async (parameters) => {
//put code here.
};
//or
async function asyncFunction(parameters) =>{
 //code here. 
}
Frightened Fox