// Normal Function function add(a,b){ return a + b; } // Async Function async function add(a,b){ return a + b; }