Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error Handling

info

Sometimes the API might fail (e.g., no internet, server down). To avoid crashing your program, use try-catch.

tip

async function askOpenAI(prompt) {
    try {
        // Do Something
    } catch (error) {
        // Do Something
    }
}