Anyway, how would I combine these into one line? ```js if (!url) return res.status(400).json({

Anyway, how would I combine these into one line?
    if (!url) return res.status(400).json({ error: "400", message: "Missing URL" });
    if (!format) return res.status(400).json({ error: "400", message: "Missing format" });
Was this page helpful?